import { PropType } from 'vue'; import { SwitchVariantProps } from './switch.themes'; export declare const switchProps: { as: { type: PropType; default: string; }; modelValue: { type: PropType; default: boolean; }; color: { type: PropType; default: string; }; size: { type: PropType; default: string; }; isDisabled: { type: PropType; default: boolean; }; };