declare const CellTypes: { EXISTS: number; NON_EXISTS: number; EMPTY_A: number; EMPTY_B: number; EMPTY_C: number; }; declare const unitWidth = 98; declare const unitHeight = 64; declare const unitGapH = 50; declare const unitGapW = 50; declare const top = 0; declare const left = 0; declare const minUnitWidth = 80; declare const minUnitHeight = 54; declare const minUnitGapH = 40; declare const minUnitGapW = 40; declare const minSVGWidth = 1226; declare const minSVGHeight = 216; declare const coefficient = 2; export { CellTypes, unitWidth, unitHeight, unitGapH, unitGapW, top, left, coefficient, minUnitWidth, minUnitHeight, minUnitGapH, minUnitGapW, minSVGWidth, minSVGHeight };