import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; type Kind = 'error' | 'info' | 'success' | 'warning'; interface InlineNotificationProps { children?: ReactNode; className?: string | null; kind: Kind; } /** * The `` component is used to communicate important information to a user. */ export declare const InlineNotification: MdxComponent; export {};