import type { BasicType } from '../../_utils/props/interface'; import type { PropType, ExtractPropTypes } from 'vue'; import type { FightingSize } from '../../_interface'; export declare const Props: { /** 绑定值当前的时间 */ readonly time: BasicType, string | null>; /** 是否禁用 */ readonly disabled: BasicType; /** 是否可清除 */ readonly clear: BasicType; /** 占位符 */ readonly placeholder: BasicType, string | null>; /** * 尺寸 * * @values large middle small mini * @default middle */ readonly size: BasicType, FightingSize | null>; }; /** time-picker 组件 props 类型 */ export type TimePickerProps = ExtractPropTypes;