import type { DefineComponent } from "vue"; /** Switch component props */ export interface SwitchProps { checked?: boolean | number; modelValue?: boolean | number; type?: string; disabled?: boolean; loading?: boolean; /** default: default */ size?: any; trueText?: string; falseText?: string; } /** Switch Vue 3 component */ declare const Switch: DefineComponent; export default Switch;