export declare type Modes = 'function' | 'class'; export declare type Lang = 'ts' | 'js'; export declare class FilesOptions { lang: Lang; test?: string; style?: string; constructor(useJs: boolean, test?: string, style?: string); }