export declare const sanitize: (str: string) => string; export declare const pascalCase: (str: string) => string; export declare const camelCase: (str: string) => string; export declare const isDirExists: (path: string) => boolean; export declare const ifDirExistsElseMakeDir: (path: string) => boolean; export declare const getFileOptions: (str: string) => { pascalCase: string; camelCase: string; lowerCase: string; }; export declare const readTemplateContent: (schematicType: string) => string; export declare const isExistsSchematicFile: (destPath: string, language: string, schematicType: string, schematicName: string) => boolean;