import React, { type ReactNode } from 'react'; import type { Status } from '../../util/variant-types'; type InlineNotificationProps = { /** * CSS class names that can be appended to the component for styling. */ className?: string; /** * Keyword to characterize the state of the notification */ status?: Status; /** * Secondary text used to describe the content in more detail */ subTitle?: ReactNode; /** * The title/heading of the component */ title: string; }; /** * `import {InlineNotification} from "@chanzuckerberg/eds";` * * An alert placed within a section of a page to provide a contextual notification. For example, an error which applies to multiple fields within a form. */ export declare const InlineNotification: { ({ className, status, subTitle, title, ...other }: InlineNotificationProps): React.JSX.Element; displayName: string; }; export {};