import type { FunctionDefinition } from '../../definition_types'; /** * Returns the byte 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), fn_byte_length = BYTE_LENGTH(city) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=byte_length.d.ts.map