import { default as React } from 'react'; export interface ToastData { id: string; title: string; message?: string; } export interface ToastListProps { /** Sets the data-testid attribute. */ testId?: string; /** Array of toast data to display */ toasts?: ToastData[]; /** Ref passed to the component */ ref?: React.Ref; } declare const ToastList: React.FC; export default ToastList;