import { ToReact } from './helpers.types'; import { ZArticleCard } from '../article-card'; export type ZrArticleCard_Props = ToReact<'ArticleCard'>; type ZrArticleCard_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Header: typeof Header; Actions: typeof Actions; }; declare const Content: import('react').FC; declare const Header: import('react').FC; declare const Actions: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrArticleCard_Type; export { Namespace as ZrArticleCard };