import { FunctionComponent, MouseEventHandler, ReactNode, Ref } from 'react'; import { ARIA_LIVE_VARIANT } from '../const'; import { VARIANT } from '../Theme'; export interface GlobalMessageProps { id: string; children: ReactNode; variant?: VARIANT; role?: string; buttonAlt: string; buttonLabel: string; ariaLive?: ARIA_LIVE_VARIANT; forwardRef?: Ref; onClick: MouseEventHandler; } declare const GlobalMessage: FunctionComponent; export default GlobalMessage;