import { z } from 'zod'; /** * Zod schema for the SlackFinishInstallResponse model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const slackFinishInstallResponse: z.ZodLazy; }, "strip", z.ZodTypeAny, { code: string; appId: string; redirectUrl?: string | undefined; }, { code: string; appId: string; redirectUrl?: string | undefined; }>>; /** * * @typedef {SlackFinishInstallResponse} slackFinishInstallResponse * @property {string} - The app ID of the Slack app that was originally configured at the project-level. * @property {string} - The code that was returned from the OAuth flow, and found in the query string of the redirect URL. * @property {string} */ export type SlackFinishInstallResponse = z.infer; /** * Zod schema for mapping API responses to the SlackFinishInstallResponse application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const slackFinishInstallResponseResponse: z.ZodLazy; }, "strip", z.ZodTypeAny, { code: string; app_id: string; redirect_url?: string | undefined; }, { code: string; app_id: string; redirect_url?: string | undefined; }>, { appId: string; code: string; redirectUrl: string | undefined; }, { code: string; app_id: string; redirect_url?: string | undefined; }>>; /** * Zod schema for mapping the SlackFinishInstallResponse application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const slackFinishInstallResponseRequest: z.ZodLazy; }, "strip", z.ZodTypeAny, { code: string; appId: string; redirectUrl?: string | undefined; }, { code: string; appId: string; redirectUrl?: string | undefined; }>, { app_id: string; code: string; redirect_url: string | undefined; }, { code: string; appId: string; redirectUrl?: string | undefined; }>>; //# sourceMappingURL=slack-finish-install-response.d.ts.map