import { Component, PropType } from 'vue'; import { AsTag } from '../../primitive'; import { CheckboxVariantProps } from './checkbox.theme'; export declare const checkboxProps: { modelValue: { type: PropType; default: boolean; }; as: { type: PropType; default: string; }; color: { type: PropType; default: string; }; size: { type: PropType; default: string; }; radius: { type: PropType; default: string; }; isDisabled: { type: PropType; default: boolean; }; lineThrough: { type: PropType; default: boolean; }; }; export declare const checkboxEmits: { 'update:modelValue': (value: any) => any; change: (e: Event) => Event; };