import React from 'react'; import { type OverrideClassName } from "../../types/OverrideClassName"; import { type GenericNotificationVariant } from '../subcomponents/GenericNotification'; export type GlobalNotificationBase = OverrideClassName<{ children: React.ReactNode; onHide?: () => void; persistent?: boolean; }>; export type GlobalNotificationProps = GlobalNotificationBase & GenericNotificationVariant; /** * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3082060757/Global+Notification Guidance} | * {@link https://cultureamp.design/?path=/docs/components-notifications-global-notification--docs Storybook} */ export declare const GlobalNotification: { ({ persistent, ...props }: GlobalNotificationProps): JSX.Element; displayName: string; };