import { HTMLAttributes } from 'react'; import { NotificationProps } from './types'; export declare type NotificationDescriptionProps = { description: NotificationProps['description']; } & HTMLAttributes; /** * @internal This component is unstable and must not be used outside of `NotificationView`. */ export declare const NotificationDescription: import("react").NamedExoticComponent<{ description: NotificationProps['description']; } & HTMLAttributes>;