import { Path, LocationHook } from "./index"; interface StaticLocationHookOptions { record?: boolean; } interface StaticLocationHook extends LocationHook { history: Readonly; } declare function staticLocationHook( path?: Path, options?: StaticLocationHookOptions, ): StaticLocationHook; export default staticLocationHook;