import { type Emit, type Teardown } from './types.js'; export interface StorageSnapshot { local: Record; session: Record; cookies: Record; } export declare function readStorage(area?: string): StorageSnapshot | Record; export declare function installStorage(emit: Emit): Teardown;