import { GeneratorOptions } from "./generatorOptions.type"; export declare class Generator { indent: string; private options; private lines; private eolPrinted; constructor(options: GeneratorOptions); setIndent(indent: string): Generator; append(text: string): Generator; eol(): Generator; quote(): Generator; apostrophe(): Generator; toString(): string; }