import type Inula from 'openinula';
import type { PivotChartConstructorOptions } from '@visactor/vtable';
import type { BaseTableProps } from './base-table';
export interface PivotChartProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotChartConstructorOptions, 'container' | 'records'> {
}
export declare const PivotChart: Inula.ExoticComponent<PivotChartProps & {
    children?: Inula.InulaNode;
} & import("../containers/withContainer").ContainerProps> & Inula.Attributes & {
    ref?: Inula.Ref<any>;
};
export declare function registerChartModule(name: string, chart: any): void;
