import type { VoiceEmbedding, VoiceStore } from "./types.js"; /** * Voice store that keeps everything in memory. * * This is the default in environments without IndexedDB and the store used by * tests; nothing survives a page reload. */ export declare class MemoryVoiceStore implements VoiceStore { #private; save(name: string, embedding: VoiceEmbedding): Promise; load(name: string): Promise; list(): Promise; delete(name: string): Promise; clear(): Promise; } //# sourceMappingURL=memory-store.d.ts.map