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