import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; /** * Provider connection test result */ export type TestConnectionResult = { /** * Whether the connection test succeeded */ success: boolean; /** * Provider type tested */ provider: string; /** * Result message */ message: string; /** * Response latency in milliseconds */ latencyMs?: number | undefined; /** * Available models (if provider supports listing) */ models?: Array | undefined; }; /** @internal */ export declare const TestConnectionResult$inboundSchema: z.ZodMiniType; export declare function testConnectionResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=test-connection-result.d.ts.map