import type { CheckboxGroupChange } from './src/interface'; import type { VmSize, CheckboxLabel } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import CheckboxGroup from "./src/checkbox-group"; export declare const VCheckboxGroup: Install, string[] | null>; readonly disabled: BasicType; readonly vertical: BasicType; readonly label: BasicType, string | null>; readonly background: BasicType; readonly size: BasicType, VmSize | null>; readonly columnGap: BasicType, string | number | null>; readonly rowGap: BasicType, string | number | null>; readonly onChange: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: string[] | CheckboxLabel) => boolean; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, string[] | null>; readonly disabled: BasicType; readonly vertical: BasicType; readonly label: BasicType, string | null>; readonly background: BasicType; readonly size: BasicType, VmSize | null>; readonly columnGap: BasicType, string | number | null>; readonly rowGap: BasicType, string | number | null>; readonly onChange: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: string[] | CheckboxLabel) => any) | undefined; }, { readonly background: boolean; readonly size: VmSize; readonly disabled: boolean; readonly vertical: boolean; readonly modelValue: string[]; readonly label: string; readonly onChange: CheckboxGroupChange; readonly columnGap: string | number; readonly rowGap: string | number; }>>; /** check-box-group 组件实例类型 */ export type CheckboxGroupInstance = InstanceType; export * from './src/interface'; export default VCheckboxGroup;