import { FC } from 'react';

export interface MaskProps {
    id?: string;
    fill?: string;
}
export declare const Mask: FC<MaskProps>;
