import { type Router, type RouterOptions } from '../..'; /** * Creates a {@link Router} that interfaces with the Web Browser's history API. * * @param options Options for the router, such as base path or initial route. */ export declare const createWebRouter: (options?: RouterOptions) => Router;