import { DateControlFieldValueFormat, DateControlFormValueFormat } from './types'; export declare const getDateControlFieldValueFormat: (inputFormat?: DateControlFieldValueFormat | string | null) => "dd/MM/yyyy" | "MM/yyyy"; export declare const getDateControlFormValueFormat: (fieldFormat: DateControlFieldValueFormat) => "yyyy-MM-dd" | "yyyy-MM"; export declare const getDateControlFieldValue: (formValue: Date | string | null, formValueFormat: DateControlFormValueFormat) => Date | null;