import type { FunctionDefinition } from '../../definition_types'; /** * Returns a new string representing the input string converted to lower case. * * @example * ROW message = "Some Text" * | EVAL message_lower = TO_LOWER(message) * * @example * ROW v = TO_LOWER(["Some", "Text"]) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_lower.d.ts.map