import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: procedure** * * A `procedure` is a step-by-step instruction in how to perform some task. * * Attributes: * * `ordering` (optional) Either `ordered` (default if attribute missing) or `unordered`. * * Children: `[preProcedure? [title? step+]+ postProcedure?]` * * @param ordering * @param children * @param className * @param props * @constructor */ declare function ProcedureRoot({ ordering, children, className, ...props }: PropsWithChildrenAndClassName<{ ordering?: 'unordered' | 'ordered'; }>): import("react/jsx-runtime").JSX.Element; export { ProcedureRoot };