/** @jsx jsx */ import { ReactNode } from 'react'; import { jsx } from '@emotion/react'; import { AriaSelection } from '../accessibility'; import { CommonProps, GroupBase, Options } from '../types'; export interface LiveRegionProps> extends CommonProps { children: ReactNode; innerProps: { className?: string; }; ariaSelection: AriaSelection; focusedOption: Option | null; focusedValue: Option | null; selectValue: Options; focusableOptions: Options; isFocused: boolean; id: string; } declare const LiveRegion: >(props: LiveRegionProps) => jsx.JSX.Element; export default LiveRegion;