export declare class LocalizationStore { private data; private language; constructor(language?: string); get(key: string): string | undefined; set(key: string, value: string): void; delete(key: string): boolean; has(key: string): boolean; entries(): IterableIterator<[string, string]>; keys(): IterableIterator; get size(): number; toCSV(): string; static fromCSV(content: string): LocalizationStore; } //# sourceMappingURL=localization-store.d.ts.map