import React from 'react'; import { FlashbarProps } from './interfaces'; export declare const focusFlashFocusableArea: (flash: HTMLElement | null) => void; export declare function focusFlashById(element: HTMLElement | null, itemId: string): void; interface FlashProps extends FlashbarProps.MessageDefinition { className: string; transitionState?: string; i18nStrings?: FlashbarProps.I18nStrings; style?: FlashbarProps.Style; rootRef?: React.Ref; onDismissed?: (id?: string) => void; } export declare const Flash: React.ForwardRefExoticComponent>; export {};