import { type Define } from '@sigx/lynx'; import { type ColorVariant, type SizeScale, type WithAccessibility } from '@sigx/lynx-zero'; export type CheckboxColor = Exclude; export type CheckboxSize = Extract; export type CheckboxProps = Define.Prop<'checked', boolean, false> & Define.Prop<'color', CheckboxColor, false> & Define.Prop<'size', CheckboxSize, false> & Define.Prop<'disabled', boolean, false> & Define.Prop<'class', string, false> & WithAccessibility & Define.Model & Define.Event<'change', boolean>; export declare const Checkbox: import("@sigx/runtime-core").ComponentFactory; //# sourceMappingURL=Checkbox.d.ts.map