import { AnyLocale } from '../../shared/Context';
import { DateType } from '../date-picker/DatePickerContext';
export type FormatDateOptions = {
    locale?: AnyLocale;
    options?: Intl.DateTimeFormatOptions;
};
export declare function formatDate(dateValue: DateType, { locale, options, }?: FormatDateOptions): string;
export declare function formatDateRange(dates: {
    startDate: DateType;
    endDate: DateType;
}, { locale, options, }?: FormatDateOptions): string;
