import { ComputedRef } from 'vue' import { AnyFunction } from '@present-ui/utils/types' export interface ICheckboxGroupInstance { name?: string modelValue?: ComputedRef disabled?: ComputedRef min?: ComputedRef max?: ComputedRef size?: ComputedRef fill?: ComputedRef textColor?: ComputedRef checkboxGroupSize?: ComputedRef changeEvent?: AnyFunction } export interface ICheckboxProps { modelValue: string | boolean | number label?: string | boolean | number indeterminate?: boolean disabled?: boolean checked?: boolean name?: string trueLabel?: string | number falseLabel?: string | number id?: string controls?: string border?: boolean size?: string }