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 EnactStatementProps { el: std.EnactStatement; indent: number; } export declare const HTMLEnactStatementCSS = "\n.enact-statement {\n clear: both;\n}\n"; export declare const HTMLEnactStatement: React.FC & { componentID: "HTMLEnactStatement"; }; export declare const DOCXEnactStatement: React.FC & { componentID: "DOCXEnactStatement"; }; export interface PreambleProps { el: std.Preamble; indent: number; } export declare const HTMLPreambleCSS = "\n.preamble {\n clear: both;\n}\n"; export declare const HTMLPreamble: React.FC & { componentID: "HTMLPreamble"; }; export declare const DOCXPreamble: React.FC & { componentID: "DOCXPreamble"; }; export interface LawProps { el: std.Law; indent: number; } export declare const HTMLLawCSS = "\n.law-title {\n font-weight: bold;\n}\n\n.law-num {\n font-weight: bold;\n}\n"; export declare const HTMLLaw: React.FC & { componentID: "HTMLLaw"; }; export declare const DOCXLaw: React.FC & { componentID: "DOCXLaw"; };