export interface PivotIndicatorProps { /** * Size of the indicator * @default 0.5 */ size?: number; /** * Color of the center sphere * @default '#ffff00' */ color?: string; /** * Opacity of the indicator * @default 0.8 */ opacity?: number; } export declare function PivotIndicator({ size, color, opacity, }: PivotIndicatorProps): import("react/jsx-runtime").JSX.Element;