import { ToReact } from './helpers.types'; import { ZEventListItem } from '../event-list-item'; export type ZrEventListItem_Props = ToReact<'EventListItem'>; type ZrEventListItem_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: ZrEventListItem_Type; export { Namespace as ZrEventListItem };