import { DateRangeType, AppliedDateRangeType } from '../Types'; import { AppliedTimeInfoType } from '../ZTimeRangePicker/RelativeRangePicker/Types'; import { TimeRangePropsType } from '../components/TimePickBanner'; interface StaticDateRangeQuickPickerProps { open: boolean; initialDateRange?: DateRangeType; minDate?: Date | string; maxDate?: Date | string; onChange: (dateRange: AppliedDateRangeType) => void; handleCancel: () => void; handleApply: () => void; cancelLabel?: string; applyLabel?: string; lastAppliedTime?: AppliedTimeInfoType; timeRangeProps?: TimeRangePropsType; } export declare const ZStaticDateRangeQuickPicker: (props: StaticDateRangeQuickPickerProps) => JSX.Element | null; export {};