import type { DielineResult, PageInfo } from "../types"; interface BoxOverlayProps { page: PageInfo; canvasWidth: number; canvasHeight: number; /** Dieline payload; used to drop a per-region info icon at the * centroid of each artwork cut area, in addition to the * standard trim/bleed/crop page boxes. */ dieline?: DielineResult | null; } /** * BoxOverlay — Trim / Bleed / Crop box indicators with a clickable * info icon per box that reveals the dimensions in both millimetres * and inches. Multi-artwork files (front + back in one PDF) can have * different trim/bleed regions per page; the per-box popover lets * operators verify each one without mental conversion. */ export declare function BoxOverlay({ page, canvasWidth, canvasHeight, dieline }: BoxOverlayProps): import("react").JSX.Element | null; export {}; //# sourceMappingURL=BoxOverlay.d.ts.map