import { FormFieldComponent } from './form-field'; export declare class DateFormFieldComponent extends FormFieldComponent { utc: boolean; showTime: boolean; timeOnly: boolean; inline: boolean; showSeconds: boolean; dateFormat: string; hourFormat: string; placeholder: string; yearRange: string; locale: string; localeSettings: { firstDayOfWeek: number; dayNames: string[]; dayNamesShort: string[]; dayNamesMin: string[]; monthNames: string[]; monthNamesShort: string[]; today: string; clear: string; }; parse(value: any): Date; calendar: any; ngAfterContentInit(): void; }