import React from "react"; import * as std from "../../law/std"; import type { HTMLComponentProps } from "../common/html"; import type { DOCXComponentProps } from "../common/docx/component"; export interface TOCProps { el: std.TOC; indent: number; } export declare const HTMLTOCCSS = "\n.toc {\n clear: both;\n}\n\n.toc-label {\n clear: both;\n font-weight: bold;\n}\n\n"; export declare const HTMLTOC: React.FC & { componentID: "HTMLTOC"; }; export declare const DOCXTOC: React.FC & { componentID: "DOCXTOC"; }; export interface TOCItemProps { el: std.TOCItem; indent: number; } export declare const HTMLTOCItem: React.FC & { componentID: "HTMLTOCItem"; }; export declare const DOCXTOCItem: React.FC & { componentID: "DOCXTOCItem"; };