import { default as React } from 'react'; import { TimePickerProps as AntTimePickerProps } from 'antd'; import { Dayjs } from 'dayjs'; import { BaseComponentProps, DataSetConfig, ValidationDisplayConfig } from '../../types/common'; /** * 校验规则接口 */ export interface ValidationRule { type?: string; required?: boolean; message?: string; pattern?: string | RegExp; min?: number; max?: number; } export interface AndTimePickerProps extends Omit, BaseComponentProps, DataSetConfig, ValidationDisplayConfig { changeAction?: string; valueFormat?: string; onChange?: (time: Dayjs | null, timeString: string | null) => void; value?: string | Dayjs; rules?: ValidationRule[]; validateOnChange?: boolean; validateOnBlur?: boolean; } export declare const AndTimePicker: React.FC; export default AndTimePicker; //# sourceMappingURL=index.d.ts.map