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 RemarksProps { el: std.Remarks; indent: number; } export declare const HTMLRemarksCSS = "\n.remarks {\n clear: both;\n}\n\n.remarks-label {\n clear: both;\n font-weight: bold;\n}\n\n"; export declare const HTMLRemarks: React.FC & { componentID: "HTMLRemarks"; }; export declare const DOCXRemarks: React.FC & { componentID: "DOCXRemarks"; };