/** * Convert a string to human readable format * @example 'fooBarBaz' => 'Foo bar baz' * @example 'foo_bar_baz' => 'Foo bar baz' * @param name The name to convert */ export declare function convertName(name: string): string;