import React from 'react'; interface IToast { id: string; title: string; status?: any; description?: string; isClosable?: boolean; toast?: any; variant?: any; } export declare const ToastAlert: ({ id, status, title, description, variant, isClosable, toast, }: IToast) => React.JSX.Element; export {};