import { ExtractPropTypes, PropType } from 'vue'; import { ButtonSize } from '../../button'; export declare const switchProps: { readonly size: { readonly type: PropType; readonly default: "default"; }; readonly trueLabel: { readonly type: StringConstructor; readonly default: ""; }; readonly falseLabel: { readonly type: StringConstructor; readonly default: ""; }; readonly modelValue: { readonly type: any; readonly default: undefined; }; readonly trueValue: { readonly type: any; readonly default: true; }; readonly falseValue: { readonly type: any; readonly default: false; }; readonly disabled: BooleanConstructor; readonly loading: { readonly type: BooleanConstructor; readonly default: false; }; readonly beforeChange: FunctionConstructor; }; export type SwitchProps = ExtractPropTypes;