import { ReactElement } from 'react'; import { RouteMatch } from './types.js'; export interface OutletProps { /** * Supply children to override the default show/hide behavior of the outlet. * You must render a RouteRenderer, passing match and params as props, to * properly show a matched route. */ children?: (match: RouteMatch | null, params: Record | undefined) => ReactElement | null; } export declare function Outlet({ children }: OutletProps): import("react/jsx-runtime").JSX.Element | null;