export declare function parseStrings(contents: string): StringsEntries;
export interface StringsEntry {
    comment?: string;
    key?: string;
    value?: string;
    content?: string;
    startLine: number;
    startCol: number;
    endLine: number;
    endCol: number;
}
export type StringsEntries = StringsEntry[];
export declare function generateStrings(entries: StringsEntries): string;
//# sourceMappingURL=strings.d.ts.map