import type { IRange, IScale } from '@univerjs/core'; import type { SpreadsheetSkeleton, UniverRenderingContext } from '@univerjs/engine-render'; import type { IPrintGridService } from '../../services/print-grid.service'; import type { ISheetPrintManagerService } from '../../services/sheet-print-manager.service'; import { SheetExtension } from '@univerjs/engine-render'; export declare class PrintGridExtension extends SheetExtension { uKey: string; Z_INDEX: number; static printGridService: IPrintGridService | null; static printManagerService: ISheetPrintManagerService | null; draw(ctx: UniverRenderingContext, parentScale: IScale, skeleton: SpreadsheetSkeleton, _diffRanges: IRange[]): void; private _drawPrintGrid; }