import { PropType, ExtractPropTypes } from 'vue'; import { CheckboxType, CheckboxOption, CheckboxOptionFunction } from './types'; export { checkboxGroupEmits } from 'element-plus'; /** * 属性 */ export declare const checkboxGroupProps: { /** 风格类型 */ type: PropType; /** 选项数据 */ options: PropType; ariaLabel: StringConstructor; modelValue: import('element-plus/es/utils/index').EpPropFinalized<(new (...args: any[]) => import('element-plus').CheckboxGroupValueType) | (() => import('element-plus').CheckboxGroupValueType) | (((new (...args: any[]) => import('element-plus').CheckboxGroupValueType) | (() => import('element-plus').CheckboxGroupValueType)) | null)[], unknown, unknown, () => never[], boolean>; disabled: import('element-plus/es/utils/index').EpPropFinalized; min: NumberConstructor; max: NumberConstructor; size: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; fill: StringConstructor; textColor: StringConstructor; tag: import('element-plus/es/utils/index').EpPropFinalized; validateEvent: import('element-plus/es/utils/index').EpPropFinalized; props: import('element-plus/es/utils/index').EpPropFinalized<(new (...args: any[]) => { value?: string; label?: string; disabled?: string; }) | (() => { value?: string; label?: string; disabled?: string; }) | (((new (...args: any[]) => { value?: string; label?: string; disabled?: string; }) | (() => { value?: string; label?: string; disabled?: string; })) | null)[], unknown, unknown, () => Required<{ value?: string; label?: string; disabled?: string; }>, boolean>; }; export type CheckboxGroupProps = ExtractPropTypes;