import type { FunctionDefinition } from '../../definition_types'; /** * Returns a string representation of a date, in the provided format. * * @example * FROM employees * | KEEP first_name, last_name, hire_date * | EVAL hired = DATE_FORMAT("yyyy-MM-dd", hire_date) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=date_format.d.ts.map