import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MCPAuthType } from "./mcpauthtype.js"; export type CreateMcpCredentialRequest = { name?: string | null | undefined; authType?: MCPAuthType | undefined; bearerToken?: string | undefined; authorization?: string | undefined; headers?: { [k: string]: string; } | undefined; expiresAt?: Date | null | undefined; }; /** @internal */ export declare const CreateMcpCredentialRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateMcpCredentialRequest$Outbound = { name?: string | null | undefined; auth_type?: string | undefined; bearer_token?: string | undefined; authorization?: string | undefined; headers?: { [k: string]: string; } | undefined; expires_at?: string | null | undefined; }; /** @internal */ export declare const CreateMcpCredentialRequest$outboundSchema: z.ZodType; export declare function createMcpCredentialRequestToJSON(createMcpCredentialRequest: CreateMcpCredentialRequest): string; export declare function createMcpCredentialRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createmcpcredentialrequest.d.ts.map