import { DatePickerType, DatePickerValue } from '../types';
interface GetFormattedDate<Type extends DatePickerType = 'default'> {
    type: Type;
    date: DatePickerValue<Type>;
    locale: string;
    format: string;
}
export declare function getFormattedDate<Type extends DatePickerType>({ type, date, locale, format, }: GetFormattedDate<Type>): string;
export {};
//# sourceMappingURL=get-formatted-date.d.ts.map