export default class VdfBuilder {
    private readonly lines;
    private readonly separator;
    private readonly indentation;
    constructor(indentation: number);
    getIndentationLevel(): string;
    newline(key: string, value: string, nested: boolean): void;
    toVdf(): string;
}
