import * as React from 'react'; import { RadialBarDataItem, RadialBarProps } from '../polar/RadialBar'; import { ShapeAnimationProps } from './types'; export declare const defaultRadialBarShape: React.FC; export declare function parseCornerRadius(cornerRadius: string | number | undefined): number | undefined; export interface RadialBarSectorProps extends RadialBarDataItem, ShapeAnimationProps { index: number; isActive: boolean; } type RadialBarSectorComponentProps = RadialBarSectorProps & { option: Exclude | RadialBarProps['activeShape']; }; export declare function RadialBarSector({ option, ...shapeProps }: RadialBarSectorComponentProps): React.JSX.Element; export {};