import React from 'react'; import { ThemeOverrideProps } from '@xsolla/xui-core'; interface NotificationProps extends ThemeOverrideProps { tone?: "neutral" | "success" | "warning" | "alert"; type?: "toast" | "inline"; title?: string; message?: string; actionLabel?: string; onAction?: () => void; onClose?: () => void; showClose?: boolean; testID?: string; } declare const Notification: React.FC; export { Notification, type NotificationProps };