/** * Small localStorage helper for the API Explorer. * * Persists the Explorer's working state — session/auth config and per-endpoint * request drafts — across reloads and endpoint switches. All access is SSR-safe * and swallows quota/parse errors. */ export declare function loadState(key: string): T | null; export declare function saveState(key: string, value: unknown): void; /** localStorage key for a specific endpoint's saved request draft. */ export declare function draftKey(method: string, path: string): string; //# sourceMappingURL=explorer-storage.d.ts.map