declare module "svelte-routing/src/history" { const getLocation: ( source: typeof window ) => Location & { state: any; key: string }; type Listener = (params: { location: ReturnType; action: "POP" | "PUSH"; }) => void; export const createHistory: (source: typeof window) => { readonly location: ReturnType; listen: (listener: Listener) => () => void; navigate: ( to?: string | null, options?: { replace: boolean; preserveScroll: boolean; state: any } ) => void; }; type StackItem = { pathname: string; search: string }; export const createMemorySource: (initialPathname?: string) => { readonly location: StackItem; // These functions seem to have no implimentation // addEventListener: typeof window.addEventListener // removeEventListener: typeof window.removeEventListener history: { readonly entries: StackItem[]; readonly index: number; readonly state: any; pushState: (state: any, _: unknown, uri: string) => void; replaceState: (state: any, _: unknown, uri: string) => void; }; }; export const globalHistory: ReturnType; export const navigate: ReturnType["navigate"]; }