import { AppdxItemHeadLine } from "../../../node/cst/line"; import type { WithErrorRule } from "../util"; export declare const appdxItemTitlePtns: readonly [readonly ["AppdxFig", RegExp], readonly ["AppdxStyle", RegExp], readonly ["AppdxFormat", RegExp], readonly ["AppdxTable", RegExp], readonly ["AppdxNote", RegExp], readonly ["Appdx", RegExp]]; export declare const detectAppdxItemTitle: (text: string) => "AppdxTable" | "AppdxNote" | "AppdxStyle" | "AppdxFormat" | "Appdx" | "AppdxFig" | null; /** * The parser rule for {@link AppdxItemHeadLine} that represents a head line of an appended item such as an appended table. Please see the source code for the detailed syntax, and the [test code](https://github.com/yamachig/Lawtext/blob/main/core/src/parser/cst/rules/$appdxItemHeadLine.spec.ts) for examples. */ export declare const $appdxItemHeadLine: WithErrorRule; export default $appdxItemHeadLine;