import { Group } from '@antv/g';
import type { GridInfo } from '../common/interface';
import type { GridGroupConstructorParameters } from '../common/interface/group';
import type { SpreadSheet } from '../sheet-type/spread-sheet';
export declare class GridGroup extends Group {
    protected s2: SpreadSheet;
    constructor(cfg: GridGroupConstructorParameters);
    protected gridGroup: Group;
    protected gridInfo: GridInfo;
    updateGrid: (gridInfo: GridInfo, id?: string) => void;
}
