import { PropsWithChildren } from 'react';
export interface SectionNotificationProps {
    /** `true` if the notification bar should be full width; otherwise, `false`. */
    fullWidth?: boolean;
}
/** Represents a component to show notifications within a [Card](/story/atoms-card--card-example). */
export declare const SectionNotification: ({ fullWidth, children }: PropsWithChildren<SectionNotificationProps>) => import("react/jsx-runtime").JSX.Element;
