import { type CustomBackendConfig, type ProbedConfigOptions } from "@automatalabs/acp-agents"; export interface ValidateProbeRunner { probeConfigOptions(spec?: string, opts?: { cwd?: string; selectModel?: boolean; }): Promise; dispose(): Promise; } export type ValidateProbeFactory = (backends: Record | undefined) => ValidateProbeRunner; export declare function createValidateProbeRunner(backends: Record | undefined): ValidateProbeRunner; /** Package-internal hermetic test seam. Deliberately absent from the public index export. */ export declare function setValidateProbeFactoryForTests(factory: ValidateProbeFactory): () => void; //# sourceMappingURL=validate-internal.d.ts.map