export interface ToastProps { /** Sets the data-testid attribute. */ testId?: string; /** The title to display in the toast */ title: string; /** The message to display in the toast */ message?: string; /** Callback when toast is closed */ onClose?: () => void; } declare const Toast: React.FC; export default Toast;