import { ZSwitch_Events, ZSwitch_Props, ZSwitch_Slots } from '@zurich/dev-utils/code/Switch'; import { ToReactSlots } from './helperTypes'; export type ReactSwitch_Props = ToReactSlots & Partial<{ onChange: (payload: Required['change'], e: React.FormEvent) => void; onBlur: (e: React.FocusEvent) => void; onRestarted: (e: Event) => void; onValidated: (payload: boolean) => void; }>; type ReactSwitch_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { HelpText: typeof HelpText; Label: typeof Label; }; declare const Label: import('react').FC; declare const HelpText: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactSwitch_Type; export { Namespace as ReactSwitch };