import type { FunctionDefinition } from '../../definition_types'; /** * Returns a date by parsing the second argument using the format specified in the first argument. * * @example * ROW date_string = "2022-05-06" * | EVAL date = DATE_PARSE("yyyy-MM-dd", date_string) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=date_parse.d.ts.map