import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a `date_range` value. * Strings are parsed as a date range in the format `start..end`, where `start` and `end` are dates in ISO format. The range is half-open `[start, end)`. * * @example * ROW str = "2020-01-01T00:00:00.000Z..2021-01-01T00:00:00.000Z" * | EVAL range = TO_DATE_RANGE(str) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_date_range.d.ts.map