import type { FunctionDefinition } from '../../definition_types'; /** * Returns the character length of a string. * * Note: All strings are in UTF-8, so a single character can use multiple bytes. * * @example * FROM airports * | WHERE country == "India" * | KEEP city * | EVAL fn_length = LENGTH(city) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=length.d.ts.map