import { ZActionCard_Props, ZActionCard_Slots } from '@zurich/dev-utils/code/ActionCard'; import { ReactButton_Props } from '../atoms/Button'; import { ToReactSlots } from './helperTypes'; export type ReactActionCard_Props = ToReactSlots & Partial<{ onClick: (e: React.MouseEvent) => void; }>; type ReactActionCard_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { ActionButton: typeof ActionButton; Header: typeof Header; Content: typeof Content; }; declare const Header: import('react').FC; declare const Content: import('react').FC; declare const ActionButton: { (props: ReactButton_Props): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactActionCard_Type; export { Namespace as ReactActionCard };