import { format as dFormat } from 'date-fns'; import { ChartLocale } from '../types/locales'; type DFormatParameters = Parameters; type Date = DFormatParameters[0]; type Format = DFormatParameters[1]; type Options = Omit & { locale?: ChartLocale; }; export declare function dateFormat(date: Date, format: Format, options: Options): string; export {};