import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: action** * * The action that the user should take at this step. * * Children: `[any+]` * * @param children * @param props * @constructor */ declare function ProcedureAction({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { ProcedureAction };