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