export declare const lower: (text: string) => string; export declare const upper: (text: string) => string; export declare const camel: (text: string) => string; export declare const pascal: (text: string) => string; export declare const kebab: (text: string) => string; export declare const snake: (text: string) => string; export declare const macro: (text: string) => string; export declare const dir: (text: string) => string; export declare const quote: (value: number | string) => string | number; export declare function camelizeHyphen(str: string): string;