import type { ObjectSchema } from "toolcraft-schema"; import type { HumanInLoopConfig } from "./types.js"; type HumanInLoopValue> = HumanInLoopConfig | null | undefined; export declare function validateHumanInLoopOnDefine>(config: { name: string; confirm?: boolean; children?: readonly unknown[]; humanInLoop?: HumanInLoopValue; }): void; export declare function mergeHumanInLoopFromGroup, TChildParamsSchema extends ObjectSchema>(groupHumanInLoop: HumanInLoopValue, childHumanInLoop: HumanInLoopValue): HumanInLoopValue; export {};