import { z } from 'zod'; /** * Zod schema for the Oauth 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 oauth: z.ZodLazy; }, "strip", z.ZodTypeAny, { installationId: string; channelId: string; scope?: string | undefined; }, { installationId: string; channelId: string; scope?: string | undefined; }>>; /** * * @typedef {Oauth} oauth * @property {string} - The ID of the Slack channel this installation is associated with * @property {string} - A unique identifier for this Slack workspace installation * @property {string} - The OAuth scope granted during installation */ export type Oauth = z.infer; /** * Zod schema for mapping API responses to the Oauth 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 oauthResponse: z.ZodLazy; }, "strip", z.ZodTypeAny, { installation_id: string; channel_id: string; scope?: string | undefined; }, { installation_id: string; channel_id: string; scope?: string | undefined; }>, { channelId: string; installationId: string; scope: string | undefined; }, { installation_id: string; channel_id: string; scope?: string | undefined; }>>; /** * Zod schema for mapping the Oauth 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 oauthRequest: z.ZodLazy; }, "strip", z.ZodTypeAny, { installationId: string; channelId: string; scope?: string | undefined; }, { installationId: string; channelId: string; scope?: string | undefined; }>, { channel_id: string; installation_id: string; scope: string | undefined; }, { installationId: string; channelId: string; scope?: string | undefined; }>>; //# sourceMappingURL=oauth.d.ts.map