import React from "react"; import * as std from "../../law/std"; import type { DOCXComponentProps } from "../common/docx/component"; import type { HTMLComponentProps } from "../common/html"; export interface AnyELsProps { els: (std.StdEL | std.__EL | string)[]; indent: number; } export declare const HTMLAnyELsCSS = "\n\n"; export declare const HTMLAnyELsToBlocks: (props: HTMLComponentProps & AnyELsProps) => (React.JSX.Element[] | React.JSX.Element)[]; export declare const HTMLAnyELs: React.FC & { componentID: "HTMLAnyELs"; }; export declare const DOCXAnyELsToBlocks: (props: DOCXComponentProps & AnyELsProps) => (React.JSX.Element[] | React.JSX.Element)[]; export declare const DOCXAnyELs: React.FC & { componentID: "DOCXAnyELs"; };