/**
 * Convert an identifier string to underscore case
 *
 * @param input The identifer string
 * @returns the identifier in underscore case
 */
export declare function toUnderscoreCase(input: string): string;
export default toUnderscoreCase;
