import type { APIResponse } from '@playwright/test'; import type { StoreConfig } from './types'; export declare class SnapshotsStore { private path; private getStoredHeaders; private snapshots; constructor(params: StoreConfig); getStoredSnapshot(key: string): { status: number; headers?: { [key: string]: string; }; body: unknown; }; storeResponse(key: string, response: APIResponse): Promise; }