import { IPartialLocation, IRouter } from '.'; export declare type GetUserConfirmation = (message: string, callback: (result: boolean) => void) => void; export declare type CreateRouterOptions = { getUserConfirmation?: GetUserConfirmation; initialEntries?: IPartialLocation[]; initialIndex?: number; keyLength?: number; }; export declare const createRouter: (options?: CreateRouterOptions) => IRouter;