import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { OAuthRefreshTokenCredentials, OAuthRefreshTokenCredentials$Outbound } from "./oauthrefreshtokencredentials.js"; export type AuthenticatorJiraConnection = { provider: "jira"; credentials: OAuthRefreshTokenCredentials; }; /** @internal */ export declare const AuthenticatorJiraConnection$inboundSchema: z.ZodType; /** @internal */ export type AuthenticatorJiraConnection$Outbound = { provider: "jira"; credentials: OAuthRefreshTokenCredentials$Outbound; }; /** @internal */ export declare const AuthenticatorJiraConnection$outboundSchema: z.ZodType; export declare function authenticatorJiraConnectionToJSON(authenticatorJiraConnection: AuthenticatorJiraConnection): string; export declare function authenticatorJiraConnectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticatorjiraconnection.d.ts.map