import type React from 'react';
import type { PivotTableConstructorOptions } from '@visactor/vtable';
import type { BaseTableProps } from './base-table';
export interface PivotTableProps extends Omit<BaseTableProps, 'records'>, Omit<PivotTableConstructorOptions, 'container'> {
}
export declare const PivotTableSimple: React.ForwardRefExoticComponent<PivotTableProps & {
    children?: React.ReactNode;
} & import("../containers/withContainer").ContainerProps & React.RefAttributes<any>>;
