import { TdSwitchProps } from './type'; import { PropType } from 'vue'; declare const _default: { customValue: { type: PropType; }; disabled: { type: BooleanConstructor; default: any; }; icon: { type: PropType; default: () => TdSwitchProps['icon']; }; label: { type: PropType; default: () => TdSwitchProps['label']; }; loading: BooleanConstructor; size: { type: PropType; default: TdSwitchProps['size']; validator(val: TdSwitchProps['size']): boolean; }; value: { type: PropType; default: TdSwitchProps['value']; }; modelValue: { type: PropType; default: TdSwitchProps['value']; }; defaultValue: { type: PropType; }; onChange: PropType; }; export default _default;