/** * Converts `string` to [snake case](https://en.wikipedia.org/wiki/Snake_case) * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 5,249 bytes * - Micro-dash: 235 bytes */ export declare function snakeCase(string: string): string;