import type { MatchResult } from "generic-parser/lib/core"; import type { Line } from "../../node/cst/line"; import { EL } from "../../node/el"; import type { ErrorMessage } from "../cst/error"; import type { Env } from "./env"; import type { VirtualLine } from "./virtualLine"; import type { JsonEL } from "../../node/el/jsonEL"; export declare const testLawtextToStd: (lawtextWithMarker: string, expectedRendered: string, expectedValue: TJsonEL, expectedErrorMessages: string[], parseLines: (vlines: VirtualLine[], env: Env) => MatchResult<{ value: TEL; errors: ErrorMessage[]; }, Env>, toLines: (el: TEL) => Line[]) => void; export declare const assertELVaridity: (el: EL | string, lawtext?: string, testGap?: boolean) => void;