import { default as React, ComponentType, MouseEventHandler } from 'react'; export declare const Toast: React.ForwardRefExoticComponent<{ className?: string; /** * An icon to display within the button. */ Icon?: ComponentType>; /** * Whether to show the action button. If true, an action button will be shown on the right side of the toast. */ onClose?: MouseEventHandler; /** * The tooltip to show on the close button. This is only used if `onClose` is provided. */ tooltip?: string; } & React.HTMLAttributes & React.RefAttributes>; //# sourceMappingURL=Toast.d.ts.map