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 AppdxItemProps { el: std.AppdxItem | std.SupplProvisionAppdxItem; indent: number; } export declare const HTMLAppdxItemCSS = "\n.appdx-item {\n clear: both;\n}\n\n.appdx-item-head {\n clear: both;\n font-weight: bold;\n}\n\n"; export declare const HTMLAppdxItem: React.FC & { componentID: "HTMLAppdxItem"; }; export declare const DOCXAppdxItem: React.FC & { componentID: "DOCXAppdxItem"; };