import { EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export interface DatePickerOptionsInterface { mode: string; value: Date; minDate: Date; maxDate: Date; use12Hours: boolean; minuteStep: Number; locale: any; disabled: boolean; mask: boolean; title: string; okText: string; dismissText: string; appendToBody: boolean; showErrorToast: boolean; showErrorToastInterval: number; } export declare class DatePickerOptions implements DatePickerOptionsInterface { mode: string; value: Date; minDate: Date; maxDate: Date; use12Hours: boolean; minuteStep: number; data: any[]; mask: boolean; title: string; okText: string; dismissText: string; disabled: boolean; locale: any; appendToBody: boolean; showErrorToast: boolean; showErrorToastInterval: number; onOk: EventEmitter; onDismiss: EventEmitter; onValueChange: EventEmitter; onChange: EventEmitter; hidePicker: () => void; updateNgModel?: (value: Date) => void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }