/// export declare type ToastStatus = 'error' | 'warning' | 'success' | 'info' | 'neutral'; export interface ToastContext { status: ToastStatus; onClose: () => void; } export declare const ToastProvider: ({ onClose, status, children }: { onClose: any; status: any; children: any; }) => JSX.Element; export declare const useToastContext: () => ToastContext;