import type { FunctionDefinition } from '../../definition_types'; /** * Use `CHUNK` to split a text field into smaller chunks. * * @example * ROW result = CHUNK("It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief.", {"strategy": "word", "max_chunk_size": 10, "overlap": 1}) * | MV_EXPAND result */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=chunk.d.ts.map