export interface FormatStringCaseProps { /** The text to transform */ text: any; /** The type of transformation to apply */ type: 'uppercase' | 'lowercase' | 'capitalize' | 'capitalizeWords'; /** Fallback if text is invalid */ fallback?: string; } export default function FormatStringCase({ text, type, fallback }: FormatStringCaseProps): string;