interface InputSwitchProps {
    modelValue?: boolean;
}

declare class InputSwitch {
    $props: InputSwitchProps;
}

export default InputSwitch;
