import beautifyModule from 'js-beautify'; export declare const BEAUTIFY_OPTIONS: beautifyModule.JSBeautifyOptions; export declare class CreateError extends Error { message: string; constructor(message: string); } export declare const stripLastSep: (pathToStrip: string) => string; export declare const getAbsolutePath: (relativePath: string) => string; export declare function checkFlagsValue(commanderOptions: any, options: any): void; export declare function validateName(type: string, name?: string): string; export declare function getModuleName(pathToModule: string): string; export declare function prependNumbersToChoices(choices: T[]): { name: string; value: T; }[];