import * as React from "react"; interface RouterProps { children?: React.ReactNode; } declare function router(props: RouterProps): JSX.Element; export declare const Router: typeof router; export {};