export declare var MODULE_SUFFIX: string; export declare function camelCaseToDashCase(input: string): string; export declare function dashCaseToCamelCase(input: string): string; export declare function splitAtColon(input: string, defaultValues: string[]): string[]; export declare function sanitizeIdentifier(name: string): string;