export interface Generable { toJS?(): string; toTS(): string; toBrowserJS?(): string; toTSWithoutNamespace?(): string; } export declare function JS(gen: Generable): string; export declare function BrowserJS(gen: Generable): string; export declare function TS(gen: Generable): string;