/**
 * @license
 * Copyright (c) 2021 Handsoncode. All rights reserved.
 */
import { CellError } from '../Cell';
import { ParsingError } from '../parser/Ast';
export declare class ParsingErrorVertex {
    readonly errors: ParsingError[];
    readonly rawInput: string;
    constructor(errors: ParsingError[], rawInput: string);
    getCellValue(): CellError;
    getFormula(): string;
}
