import { BasicComponentProps } from "../../../types";
export interface CalendarTimePickerProps extends Omit<BasicComponentProps, 'onChange'> {
    /**
     * 选中时间
     */
    value?: Date;
    /**
     * 显示内容
     */
    label?: string;
    /**
     * 显示格式
     */
    format?: string;
    /**
     * 时间改变回调
     */
    onChange?: (date?: Date) => void;
}
