import { ToReact } from './helpers.types'; import { ZMultiSelectableCards } from '../multi-selectable-cards'; export type ZrMultiSelectableCards_Props = ToReact<'MultiSelectableCards'>; type ZrMultiSelectableCards_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Option: typeof Option; }; declare const Option: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrMultiSelectableCards_Type; export { Namespace as ZrMultiSelectableCards };