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 ArticleGroupProps { el: std.ArticleGroup | std.MainProvision | std.SupplProvision; indent: number; } export declare const HTMLArticleGroupCSS = "\n.main-provision {\n clear: both;\n}\n\n.article-group {\n clear: both;\n}\n\n.article-group-title {\n clear: both;\n font-weight: bold;\n}\n\n.suppl-provision {\n clear: both;\n}\n\n.suppl-provision-label {\n clear: both;\n font-weight: bold;\n}\n"; export declare const HTMLArticleGroup: React.FC & { componentID: "HTMLArticleGroup"; }; export declare const DOCXArticleGroup: React.FC & { componentID: "DOCXArticleGroup"; };