export interface AbsoluteInputProps { /** * @description 默认值 */ defaultValue: any; /** * @description 数据变更事件 */ onChange: (value: any) => void; /** * @description 占位符 */ label: string; /** * @description 值 */ value: string; }