import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value to a date value. * A string will only be successfully converted if it’s respecting the format `yyyy-MM-dd'T'HH:mm:ss.SSS'Z'`. * To convert dates in other formats, use `DATE_PARSE`. * * Note: Note that when converting from nanosecond resolution to millisecond resolution with this function, the nanosecond date is truncated, not rounded. * * @example * ROW string = ["1953-09-02T00:00:00.000Z", "1964-06-02T00:00:00.000Z", "1964-06-02 00:00:00"] * | EVAL datetime = TO_DATETIME(string) * * @example * ROW int = [0, 1] * | EVAL dt = TO_DATETIME(int) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_datetime.d.ts.map