import { NotificationType, NotificationVariant } from '../types'; declare const getNotificationArgs: (formatMessage: any, type: NotificationVariant) => { closeButtonAriaLabel: any; sensitivity: "foreground"; style: { pointerEvents: "auto"; }; typeIconAriaLabel: any; variant: NotificationVariant; }; declare const getNotificationMessage: (formatMessage: any, type: "success" | "error", notification?: NotificationType, values?: any) => any; export { getNotificationArgs, getNotificationMessage };