import { FC } from 'react'; export interface ToastProps { title?: string; description?: string; /** className for toast container */ className?: string; /** toast type */ type: 'success' | 'error' | 'info' | 'warn'; /** The title of action button */ actionTitle?: string; /** persist display toast until manually closed */ persist?: boolean; /** The callback of action button */ onAction?: () => void; /** trigger when toast close animation finishes, this includes auto collapse */ onClose?: () => void; } export declare const Toast: FC;