import { FunctionComponent } from 'react'; import { ARIA_LIVE_VARIANT } from '../const'; import { VARIANT } from '../Theme'; export interface ModalMessageProps { id: string; children: string; variant: VARIANT; role?: string; ariaLive?: ARIA_LIVE_VARIANT; } declare const ModalMessage: FunctionComponent; export default ModalMessage;