import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GenerateChatOAuthUrlResponseDto = { /** * The OAuth authorization URL for the chat provider. For Slack: https://slack.com/oauth/v2/authorize?... For MS Teams: https://login.microsoftonline.com/.../adminconsent?... This URL should be presented to the user to authorize the integration. Expires after 5 minutes. */ url: string; }; /** @internal */ export declare const GenerateChatOAuthUrlResponseDto$inboundSchema: z.ZodType; export declare function generateChatOAuthUrlResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=generatechatoauthurlresponsedto.d.ts.map