import { ToReact } from './helpers.types'; import { ZEmptyState } from '../empty-state'; export type ZrEmptyState_Props = ToReact<'EmptyState'>; type ZrEmptyState_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: ZrEmptyState_Type; export { Namespace as ZrEmptyState };