/// <reference types="react" />
import { DateOptionsType, TimeOptionsType, TimeType, DateFormatType } from "./type";
export interface quickSelectProps {
    value?: {
        v: string | undefined;
    };
    handleConfirm: (time: TimeType) => void;
    quickSelectDateOptions: DateOptionsType[];
    quickSelectTimeOptions: TimeOptionsType[];
    dateFormat?: DateFormatType;
}
declare const QuickSelect: (props: quickSelectProps) => JSX.Element;
export default QuickSelect;
