import { ZColorInput_Events, ZColorInput_Props, ZColorInput_Slots } from '@zurich/dev-utils/code/ColorInput'; import { default as React } from 'react'; import { ToReactSlots } from './helperTypes'; export type ReactColorInput_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 ReactColorInput_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { HelpText: typeof HelpText; Label: typeof Label; }; declare const Label: React.FC; declare const HelpText: React.FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactColorInput_Type; export { Namespace as ReactColorInput };