/** * Gets the string representation from a `Date` which is the format a `date` input uses. * `yyyy-mm-dd`. * Uses UTC methods to ensure consistent output regardless of timezone. * * Used to convert a javascript date object into the required string format expected by the expression builder. * @beta */ export declare const formatDateString: (date: Date) => string; /** * Gets the string representation from a `Date` which is the format a `datetime-local` input uses. * `yyyy-mm-ddThh:mm:ss`. * Uses UTC methods to ensure consistent output regardless of timezone. * * Used to convert a javascript date object into the required string format expected by the expression builder. * @beta */ export declare const formatDateTimeString: (date: Date) => string; //# sourceMappingURL=formatting.d.ts.map