import type { Line } from "../../node/cst/line"; import type { InitialEnvOptions } from "./env"; export declare const parse: (lawtext: string, options?: InitialEnvOptions) => { value: Line[]; errors: import("./error").ErrorMessage[]; }; export default parse;