import type { FC } from 'react';
import type { JSX } from 'react';
type NotificationBaseProps = {
    heading?: string;
    headingTag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
    hasHeadingSlot?: boolean;
    description?: string;
    hasDescriptionSlot?: boolean;
    innerHTML?: boolean;
    actionLabel?: JSX.Element;
    dismissButton?: JSX.Element;
};
export declare const NotificationBase: FC<NotificationBaseProps>;
export {};
