import { jsx } from '@emotion/react'; export declare enum ENotificationType { warning = "warning", action_confirmed = "action_confirmed", info = "info", success = "success" } export declare enum ENotificationSize { XS = "XS", S = "S", M = "M" } export interface INotificationProps { type: ENotificationType; text: string; size?: ENotificationSize; } export declare const NotificationMessage: ({ type, text, size, }: INotificationProps) => jsx.JSX.Element;