/**
 * @license
 * Copyright (c) 2025 Handsoncode. All rights reserved.
 */
import { CellError } from '../Cell';
import { ParsingError } from '../parser/Ast';
import { CellVertex } from './CellVertex';
/**
 * Represents a cell that contains a parsing error.
 */
export declare class ParsingErrorVertex extends CellVertex {
    readonly errors: ParsingError[];
    readonly rawInput: string;
    /**
     * Constructor
     */
    constructor(errors: ParsingError[], rawInput: string);
    /**
     * Returns the value of the cell.
     */
    getCellValue(): CellError;
    /**
     * Returns the formula of the cell.
     */
    getFormula(): string;
}
