/// import { RouteProps, Options } from './types'; declare const useRoute: (_options?: string | Options | string[], _location?: import("history").Location | undefined) => { location: import("history").Location; match: import("./types").Match<{}> | null; history: import("history").History; }; declare const Route: ({ path, exact, sensitive, strict, location, children, component, computedMatch, render }: RouteProps<{}>) => JSX.Element; export { Route, useRoute };