export declare type TextCase = 'CamelCase' | 'SnakeCase' | 'PascalCase' | 'KebabCase';
export declare const formatText: (str: string, from: "ANY" | "CamelCase" | "SnakeCase" | "PascalCase" | "KebabCase", to: TextCase) => string;
