export declare function code(): Code;
export declare function code(input: string): Code;
export declare function code(input: ReadonlyArray<string>, ...inserts: Array<any>): Code;
export declare class Code {
    strings: ReadonlyArray<string>;
    inserts: Array<string | number | Code>;
    constructor(strings: ReadonlyArray<string>, inserts: Array<string | number | Code>);
    valueOf(): string;
    push(...strings: Array<string | Code>): void;
    toString(): string;
}
