import { ComponentProps } from 'react';
interface NotificationContentContainerProps extends ComponentProps<"div"> {
}
/**
 * Container for Notification's main content.
 *
 * @example
 * ```ts
 * <NotificationContentContainer>
 *   <NotificationMessage>You received a new message!</NotificationMessage>
 * </NotificationContentContainer>
 * ```
 */
export declare const NotificationContentContainer: ({ className, ...props }: NotificationContentContainerProps) => import("react").JSX.Element;
export {};
