import { type AgentType } from "../config/index.js"; /** Parse an unknown value to a positive integer, or return undefined. */ export declare function parsePositiveInt(v: unknown): number | undefined; /** * Validate an agentType string. Returns the value if valid, otherwise `fallback` * (defaults to `undefined`). */ export declare function parseAgentType(raw: unknown, fallback?: AgentType): AgentType | undefined; //# sourceMappingURL=shared-agent-utils.d.ts.map