import type { BaseComponentProps } from '../base-component';
import type { IIndicator } from '@visactor/vtable';
export type PivotIndicatorProps = IIndicator & BaseComponentProps;
export declare const PivotIndicator: {
    (props: PivotIndicatorProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
    displayName: string;
};
