import { ToReact } from './helpers.types'; import { ZToast } from '../toast'; export type ZrToast_Props = ToReact<'Toast'>; type ZrToast_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; }; declare const Content: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrToast_Type; export { Namespace as ZrToast };