import * as React from 'react'; import { LegendShape } from './Legends.types'; export interface IShapeProps { svgProps: React.SVGAttributes; pathProps: React.SVGAttributes; shape: LegendShape; classNameForNonSvg?: string; } export declare const Shape: React.FC;