import { ZForm_Props } from '@zurich/dev-utils/code/Form'; import { ToReactSlots } from './helperTypes'; export type ReactForm_Props = ToReactSlots & Partial<{ onSubmit: (event: React.FormEvent) => void; }>; type ReactForm_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & {}; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactForm_Type; export { Namespace as ReactForm };