import type { RangePickerProps } from '../date-picker'; type IdCardValidityValueBaseType = number | null | undefined; export type IdCardValidityValueType = [IdCardValidityValueBaseType, IdCardValidityValueBaseType] | null; export type IdCardValidityProps = Omit & { value?: IdCardValidityValueType; onChange?: (val: IdCardValidityValueType) => void; defaultValue?: IdCardValidityValueType; disabled?: boolean; }; export {};