import { ToReact } from './helpers.types'; import { Content_Props } from '../react/sub-components.types'; import { ZAlert } from '../alert'; export type ZrAlert_Props = ToReact<'Alert'>; type ZrAlert_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; ConfirmText: typeof ConfirmText; }; declare const Content: import('react').FC; declare const ConfirmText: { (props: Content_Props): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrAlert_Type; export { Namespace as ZrAlert };