import { ZMultiSelectableCards_Events, ZMultiSelectableCards_Props, ZMultiSelectableCards_Slots } from '@zurich/dev-utils/code/MultiSelectableCards'; import { ToReactSlots } from './helperTypes'; export type ReactMultiSelectableCards_Props = ToReactSlots & Partial<{ onChange: (payload: Required['change'], e: React.FormEvent) => void; }>; type ReactMultiSelectableCards_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & {}; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactMultiSelectableCards_Type; export { Namespace as ReactMultiSelectableCards };