import { ToReact } from './helpers.types'; import { ZPromo } from '../promo'; export type ZrPromo_Props = ToReact<'Promo'>; type ZrPromo_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Header: typeof Header; }; declare const Content: import('react').FC; declare const Header: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrPromo_Type; export { Namespace as ZrPromo };