/** 日期控件默认配置 配置详情参考:https://www.primefaces.org/primeng/#/calendar */ export declare class DatePickerOptions { selectionMode: string; placeholder: string; disabled: boolean; dateFormat: string; inline: boolean; selectOtherMonths: boolean; showIcon: boolean; showOnFocus: boolean; readonlyInput: boolean; minDate: string; maxDate: string; disabledDates: Array; disabledDays: Array; monthNavigator: boolean; yearNavigator: boolean; showTime: boolean; hourFormat: number; timeOnly: boolean; dataType: string; required: boolean; showSeconds: boolean; yearRange: string; locale: { firstDayOfWeek: number; dayNames: string[]; dayNamesShort: string[]; dayNamesMin: string[]; monthNames: string[]; monthNamesShort: string[]; today: string; clear: string; }; showButtonBar: boolean; }