import { ZPromo_Props, ZPromo_Slots } from '@zurich/dev-utils/code/Promo'; import { ToReactSlots } from './helperTypes'; export type ReactPromo_Props = ToReactSlots; type ReactPromo_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Header: typeof Header; Content: typeof Content; }; declare const Header: import('react').FC; declare const Content: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactPromo_Type; export { Namespace as ReactPromo };