import { PureComponent } from 'react'; import { PresentationAttributes, GeometrySector } from '../util/types'; interface SectorProps extends GeometrySector { className?: string; } export declare type Props = PresentationAttributes & SectorProps; declare class Sector extends PureComponent { static defaultProps: { cx: number; cy: number; innerRadius: number; outerRadius: number; startAngle: number; endAngle: number; cornerRadius: number; forceCornerRadius: boolean; cornerIsExternal: boolean; }; render(): JSX.Element; } export default Sector;