import { ComponentProps } from 'react';
interface NotificationTitleProps extends ComponentProps<"div"> {
}
/**
 * Title component for notification.
 * Adjusts its styling based on notification read status from context.
 *
 * @example
 * ```ts
 * <NotificationTitle>New message received</NotificationTitle>
 * ```
 */
export declare const NotificationTitle: ({ className, ...props }: NotificationTitleProps) => import("react").JSX.Element;
export {};
