import { ToReact } from './helpers.types'; import { ZSelectableCards } from '../selectable-cards'; export type ZrSelectableCards_Props = ToReact<'SelectableCards'>; type ZrSelectableCards_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Option: typeof Option; }; declare const Option: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrSelectableCards_Type; export { Namespace as ZrSelectableCards };