import { INotification } from '@magicbell/react-headless';
export interface Props {
    notification: INotification;
}
/**
 * Component that renders the title of a notification.
 *
 * @example
 * <NotificationTitle notification={notification} />
 */
export default function NotificationTitle({ notification }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
