import type { Line } from "../../../node/cst/line"; import type { WithErrorRule } from "../util"; import type { StdELType } from "../../../law/std"; import * as std from "../../../law/std"; /** * The renderer for appended items ({@link std.AppdxItem | AppdxItem}). 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/$appdxItem.spec.ts) for examples. */ export declare const appdxItemToLines: (appdxItem: std.AppdxItem, indentTexts: string[]) => Line[]; export declare const makeAppdxItemRule: (ruleName: string, tag: TTag) => WithErrorRule>; /** * The parser rule for {@link std.AppdxFig}. 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/$appdxItem.spec.ts) for examples. */ export declare const $appdxFig: WithErrorRule; /** * The parser rule for {@link std.AppdxTable}. 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/$appdxItem.spec.ts) for examples. */ export declare const $appdxTable: WithErrorRule; /** * The parser rule for {@link std.AppdxStyle}. 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/$appdxItem.spec.ts) for examples. */ export declare const $appdxStyle: WithErrorRule; /** * The parser rule for {@link std.AppdxNote}. 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/$appdxItem.spec.ts) for examples. */ export declare const $appdxNote: WithErrorRule; /** * The parser rule for {@link std.AppdxFormat}. 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/$appdxItem.spec.ts) for examples. */ export declare const $appdxFormat: WithErrorRule; /** * The parser rule for {@link std.Appdx}. 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/$appdxItem.spec.ts) for examples. */ export declare const $appdx: WithErrorRule;