/** * Converts a string to proper case. */ declare function formatProperCase(str: string): string; export { formatProperCase };