import type { HTMLAttributes, ReactElement, ReactNode } from 'react';
type ToastStatus = 'default' | 'info' | 'success' | 'warning' | 'caution';
declare const ToastActions: (props: any) => import("react/jsx-runtime").JSX.Element;
declare const ToastAlert: import("react").MemoExoticComponent void;
actions?: ReactNode;
icon?: ReactElement | null | undefined;
} & HTMLAttributes & import("react").RefAttributes>>;
export type { ToastStatus };
export { ToastActions, ToastAlert };