import * as React from 'react'; import { OptionalComponentPropAndHTMLAttributes } from '../../types'; export declare type HighlightProps = { /** * Displays the overlay * @default false */ open?: boolean; /** * Disables any interactions with highlighted area * @default false */ disabled?: boolean; /** * Background colour * @default undefined */ backgroundColor?: string | undefined; } & OptionalComponentPropAndHTMLAttributes; declare const _default: React.MemoExoticComponent<(props: HighlightProps) => JSX.Element>; export default _default;