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