import type { IGetPivotDataLocalMutationParams, ISendPivotDataLocalMutationParams } from '../const/type';
import { Disposable, ICommandService } from '@univerjs/core';
export declare class SheetsPivotRPCService extends Disposable {
    private readonly _commandService;
    private _requestResolvers;
    constructor(_commandService: ICommandService);
    handleAsyncResponse(data: ISendPivotDataLocalMutationParams): void;
    getPivotDisplayConfig(params: Omit<IGetPivotDataLocalMutationParams, 'version'>): Promise<ISendPivotDataLocalMutationParams>;
    private _generateUniqueVersion;
}
