import React from 'react'; import { Icons } from '../icon'; import { NotificationVariants } from '../internal/notification'; export type InlineNotificationProps = { closeTestID?: string; ctaHref?: string; ctaOpenNewWindow?: boolean; ctaTestID?: string; ctaText?: string; descriptionText?: string; onCtaPress?: () => void; onRequestToClose?: () => void; testID?: string; titleText: string; variant: NotificationVariants; customIcon?: Icons; children?: React.ReactNode; }; declare const InlineNotification: ({ closeTestID, ctaHref, ctaOpenNewWindow, ctaTestID, ctaText, descriptionText, onCtaPress, onRequestToClose, testID, titleText, variant, customIcon, children, }: InlineNotificationProps) => React.JSX.Element; export default InlineNotification;