import type { DefineComponent } from "vue"; /** CheckboxGroup component props */ export interface CheckboxGroupProps { /** default: undefined */ modelValue?: any[]; theme?: string; disabled?: boolean; options?: any[]; /** default: horizontal */ direction?: string; /** default: default */ size?: any; } /** CheckboxGroup Vue 3 component */ declare const CheckboxGroup: DefineComponent; export default CheckboxGroup;