/// import { Buffer } from 'node:buffer'; import { BinaryIO } from '../common/BinaryIO'; import { ArxPolygon } from './Polygon'; export type ArxCell = { polygons: ArxPolygon[]; anchors?: number[]; }; export declare class Cell { static readFrom(binary: BinaryIO): ArxCell; static accumulateFrom(cell: ArxCell): Buffer; }