import { ComponentProps } from 'react';
interface NotificationHeaderProps extends ComponentProps<"div"> {
}
/**
 * Header component for notifications that provides a container for title, time and other elements.
 *
 * @example
 * ```ts
 * <NotificationHeader>
 *   <NotificationTitle>New Message</NotificationTitle>
 *   <NotificationTime time={new Date()} />
 * </NotificationHeader>
 * ```
 */
export declare const NotificationHeader: ({ className, ...props }: NotificationHeaderProps) => import("react").JSX.Element;
export {};
