import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a `double_range` value. * Strings are parsed as a double range in the format `start..end`, where `start` and `end` are double-precision floating-point numbers. The range is half-open `[start, end)`. * * @example * ROW str = "1.5..2.5" * | EVAL range = TO_DOUBLE_RANGE(str) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_double_range.d.ts.map