import type { ComponentSize } from '../../../types'; export type { CheckboxProps } from './props'; /** 绑定值类型 */ export type CheckboxModelValue = boolean | 'true' | 'false'; /** label 类型 */ export type CheckboxLabel = string | number | boolean; export type CheckboxSize = ComponentSize;