import { ZrButton_Props } from '../atoms/zr-button'; import { ToReact } from './helpers.types'; import { ZActionCard } from '../action-card'; export type ZrActionCard_Props = ToReact<'ActionCard'>; type ZrActionCard_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Header: typeof Header; Actions: typeof Actions; ActionButton: typeof ActionButton; }; declare const Content: import('react').FC; declare const Header: import('react').FC; declare const Actions: import('react').FC; declare const ActionButton: (props: ZrButton_Props) => import("react/jsx-runtime").JSX.Element; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrActionCard_Type; export { Namespace as ZrActionCard };