import { DateConfig } from '../../domains/query-execution/core/date-formats'; export type DateFormatter = (date: Date, format: string) => string; /** * Creates a date formatter function * * @param locale - The locale to use for formatting * @param cfg - The date configuration to use for formatting * @returns A function that formats dates */ export declare function createDateFormatter(locale?: Locale, cfg?: DateConfig): DateFormatter;