export interface DPickerTimeBoundOptions { date?: Date | null; inclusive?: boolean; } export declare class DPickerTimeBound { protected _date: Date | null; protected _inclusive: boolean; protected _onChange: () => void; constructor(options: DPickerTimeBoundOptions | undefined, onChange: () => void); get date(): Date | null; set date(date: Date | null); get inclusive(): boolean; set inclusive(inclusive: boolean); }