import { Opts } from "../types.js"; export type HistoryLocation = { type: "local"; path: string; } | { type: "ga-cache"; key: string; }; export declare function resolveHistoryLocation(opts: Opts): HistoryLocation; //# sourceMappingURL=location.d.ts.map