import { default as React } from 'react'; import { PdfOperation, ToolKind, EditorAction, ShapeKind, TextFontFamily } from '../types'; interface PageOverlayProps { pageIndex: number; displayIndex: number; width: number; height: number; operations: PdfOperation[]; activeTool: ToolKind; activePageIndex: number; pendingSignature: string | null; pendingText: string | null; pendingApplyAllPages: boolean; pageIndices: number[]; dispatch: React.Dispatch; drawColor?: string; drawStrokeWidth?: number; textColor?: string; textSize?: number; textFamily?: TextFontFamily; shapeKind?: ShapeKind; shapeFill?: string | null; highlightColor?: string; scale?: number; rotation?: number; } export declare const PageOverlay: React.FC; export {};