import React from 'react'; import Div from '../Element/Div/Div'; import { ArrayElementType } from '../../types/utils/ArrayElementType'; import { CreateProps } from '../../types/utils/CreateProps'; export declare const notificationVariants: readonly ["information", "warning", "success", "error"]; export declare type NotificationVarians = ArrayElementType; declare type InlineNotificationProps = CreateProps<{ /** Title text */ title?: string; /** Message text */ messageText?: string; /** Function which fires on close of notification */ closeOnClick?: (event: React.MouseEvent) => void; /** Color option of notification */ variant: NotificationVarians; /** Prop to hide icon */ hideIcon?: boolean; /** Start message text from the new line*/ forceMultiline?: boolean; /** HTML Button */ button?: React.ReactNode; }, typeof Div, 'boxShadow' | 'backgroundColor' | 'borderRadius' | 'padding'>; declare const InlineNotification: React.FunctionComponent; export default InlineNotification;