import { DynamicField } from './dynamic-field'; export declare class DateField extends DynamicField { controlType?: string; theme?: 'default' | 'green' | 'blue' | 'dark-blue' | 'red' | 'orange'; placement?: 'top' | 'bottom' | 'left' | 'right'; initialValue?: Date; locale?: string; maxDate?: Date; minDate?: Date; showWeekNumbers?: boolean; constructor(options: DateField); }