import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MssqlPreloginOptions } from "./mssqlpreloginoptions.js"; export type Mssql = { /** * The negotiated ENCRYPT_MODE with the server */ encryptMode?: string | undefined; instanceName?: string | undefined; preloginOptions?: MssqlPreloginOptions | undefined; version?: string | undefined; }; /** @internal */ export declare const Mssql$inboundSchema: z.ZodType; export declare function mssqlFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mssql.d.ts.map