import { FC } from 'react';
export interface MaskProps {
    /**
     * Unique id for the mask. Set internally by the parent component.
     */
    id?: string;
    /**
     * Fill applied to the mask rectangle.
     */
    fill?: string;
}
export declare const Mask: FC<MaskProps>;
