import type { Line } from "../../../node/cst/line"; import type { WithErrorRule } from "../util"; import * as std from "../../../law/std"; export declare const remarksControl = ":remarks:"; export declare const remarksLabelPtn: RegExp; /** * The renderer for {@link std.Remarks}. 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/$remarks.spec.ts) for examples. */ export declare const remarksToLines: (remarks: std.Remarks, indentTexts: string[]) => Line[]; /** * The parser rule for {@link std.Remarks}. 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/$remarks.spec.ts) for examples. */ export declare const $remarks: WithErrorRule; export default $remarks;