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