/** * Adds a space character before non-consecutive capital letters */ declare function decamel(str: string): string; export { decamel };