import type { FC, PropsWithChildren } from 'react';
export interface OpacityHighlighterProps extends PropsWithChildren {
/**
* Opacity value between 0-1
* @default 1
*/
readonly alphaValue: number;
/**
* If the highlighter is disabled or not.
*/
readonly isHidden?: boolean;
}
/**
* Opacity highlighter component.
* Changes the opacity of an arbitrary cell view's SVG node.
* @see https://docs.jointjs.com/api/highlighters/#opacity
* @group Components
* @example
* ```tsx
* import { Highlighter } from '@joint/react'
* return
* ```
*/
export declare const Opacity: FC;