import { ReactNode } from 'react'; import * as React from 'react'; import { WithChildrenProp } from '../utils'; export interface ToastProps extends WithChildrenProp { title?: ReactNode; icon?: ReactNode; onClose: () => void; } export declare const Toast: React.FC;