export declare const isValidName: (raw: string | undefined) => raw is string; export declare const toCamelCase: (raw: string) => string; export declare const toKebabCase: (raw: string) => string; export declare const toPascalCase: (raw: string) => string; export declare const toTitleCase: (raw: string) => string;