import type { FC, PropsWithChildren } from 'react'; export interface MaskHighlighterProps extends React.SVGProps, PropsWithChildren { /** * The layer on which the mask will be rendered. */ readonly layer?: string; /** * A CSS selector string for targeting elements. */ readonly selector?: string; /** * Child elements to render inside the mask. */ readonly children?: React.ReactNode | null | false; /** * The space between the stroke and the element */ readonly padding?: number; /** * If the highlighter is disabled or not. */ readonly isHidden?: boolean; } /** * Mask highlighter component. * Adds a stroke around an arbitrary cell view's SVG node. * @see https://docs.jointjs.com/api/highlighters/#mask * @group Components * @example * ```tsx * import { Highlighter } from '@joint/react' * return * ``` */ export declare const Mask: FC;