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 ItemStructProps { el: std.TableStruct | std.FigStruct | std.NoteStruct | std.FormatStruct | std.StyleStruct; indent: number; } export declare const HTMLItemStructCSS = "\n.item-struct {\n clear: both;\n}\n\n.item-struct-title {\n clear: both;\n font-weight: bold;\n}\n\n"; export declare const HTMLItemStruct: React.FC & { componentID: "HTMLItemStruct"; }; export declare const DOCXItemStruct: React.FC & { componentID: "DOCXItemStruct"; };