import React from "react"; import type * as std from "../../law/std"; import type { HTMLComponentProps } from "../common/html"; import type { DOCXComponentProps } from "../common/docx/component"; export interface SupplNoteProps { el: std.SupplNote; indent: number; } export declare const HTMLSupplNoteCSS = "\n.suppl-note {\n clear: both;\n}\n"; export declare const HTMLSupplNote: React.FC & { componentID: "HTMLSupplNote"; }; export declare const DOCXSupplNote: React.FC & { componentID: "DOCXSupplNote"; };