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