import * as DDL2 from "./ddl/v2.ts"; type CellPosition = { id: string; position: [number, number, number, number]; }; type DDLProperties = { layout: CellPosition[]; }; export declare function upgrade(ddl2: DDL2.Schema, dermObj: any): DDLProperties; export {};