import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; export declare const Props: { /** 绑定值 */ readonly modelValue: BasicType; /** 步长 */ readonly step: BasicType; /** 最小值 */ readonly min: BasicType; /** 最大值 */ readonly max: BasicType; /** 是否禁用 */ readonly disabled: BasicType; /** 自定义滑块背景色 */ readonly background: BasicType, string | null>; /** 自定义选中和小球的颜色 */ readonly activeColor: BasicType, string | null>; /** 自定义宽度 */ readonly width: BasicType, string | number | null>; }; /** slider 组件 props 类型 */ export type SliderProps = ExtractPropTypes;