import { ReactElement, ReactNode } from 'react';
import { Router } from '@remix-run/router';
import { RouteLeaf } from '../type';
export interface RouterProviderProps {
    router: Router;
    children: ReactNode;
    interval?: number;
    useBridge?: boolean;
    throttled?: boolean;
    hierarchy?: RouteLeaf[];
    notFound?: ReactNode;
    notFoundRedirectPath?: string;
}
export declare function RouterProvider({ router, children, notFound, hierarchy, notFoundRedirectPath, interval, useBridge, throttled, }: RouterProviderProps): ReactElement;
//# sourceMappingURL=RouterProvider.d.ts.map