/** * Convert object keys to snake case */ declare function toSnakeCase(obj: T, ignored?: string[]): S; export = toSnakeCase;