import type { CSSProperties, ReactNode } from 'react'; import { GlobalAlertLink } from './GlobalAlertLink'; type GlobalAlertProps = { children: ReactNode; variant?: 'info' | 'danger' | 'promotional'; onClose?: () => void; closable?: boolean; className?: string; 'data-testid'?: string; buttonText?: string; onClickButton?: () => void; style?: CSSProperties; }; export declare function GlobalAlert({ children, variant, onClose, closable, buttonText, onClickButton, className, 'data-testid': dataTestId, style, }: GlobalAlertProps): import("react").JSX.Element | null; export declare namespace GlobalAlert { var displayName: string; export { GlobalAlertLink as Link }; } export {}; //# sourceMappingURL=index.d.ts.map