/** * The general-purpose Toast component. * This component switches the variants of looks depends on the props: type and actionText. */ export declare const Toast: import("react").ForwardRefExoticComponent<{ type?: import("../../styled-system/recipes").ToastSlotRecipeVariant["type"]; message: import("react").ReactNode; onClose?: () => void; actionSlot?: import("react").ReactNode; statusIconProps?: Pick, "aria-label">; closeButtonProps?: Pick, "aria-label">; duration?: number; activeElement?: Element | null; customIcon?: import("react").ReactElement; showCloseButton?: boolean; } & Omit, HTMLDivElement>, "ref"> & import("react").RefAttributes>;