//#region src/shared/cell.d.ts type CellShape = "square" | "round" | "dot"; declare function cellMetrics(size: number, shape: CellShape): { inset: number; rx: number; crisp: boolean; }; //#endregion export { cellMetrics as n, CellShape as t };