import { ReactSlot, ToReact } from './helpers.types'; import { ZListItem } from '../list-item'; export type ZrListItem_Props = ToReact<'ListItem'>; type ZrListItem_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Header: typeof Header; LeftActions: typeof LeftActions; RightActions: typeof RightActions; }; declare const Content: import('react').FC; declare const Header: import('react').FC; declare const LeftActions: { (props: { children?: ReactSlot; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const RightActions: { (props: { children?: ReactSlot; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrListItem_Type; export { Namespace as ZrListItem };