import type { Line } from "../../../node/cst/line"; import type { WithErrorRule } from "../util"; import * as std from "../../../law/std"; interface AmendProvisionToLinesOptions { withControl?: boolean; } /** * The renderer for {@link std.AmendProvision}. Please see the source code for the detailed syntax, and the [test code](https://github.com/yamachig/Lawtext/blob/main/core/src/parser/std/rules/$amendProvision.spec.ts) for examples. */ export declare const amendProvisionToLines: (amendProvision: std.AmendProvision, indentTexts: string[], options?: AmendProvisionToLinesOptions) => Line[]; /** * The parser rule for {@link std.AmendProvision}. Please see the source code for the detailed syntax, and the [test code](https://github.com/yamachig/Lawtext/blob/main/core/src/parser/std/rules/$amendProvision.spec.ts) for examples. */ export declare const $amendProvision: WithErrorRule; export default $amendProvision;