/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { CellVertex } from './CellVertex'; import { EmptyValueType } from '../interpreter/InterpreterValue'; /** * Represents singleton vertex bound to all empty cells */ export declare class EmptyCellVertex extends CellVertex { constructor(); /** * Retrieves cell value bound to that singleton */ getCellValue(): EmptyValueType; }