import { z } from 'zod'; /** * Zod schema for the SlackTokenPayloadOauth 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 slackTokenPayloadOauth: z.ZodLazy; }, "strip", z.ZodTypeAny, { installationId: string; channelId: string; scope?: string | undefined; }, { installationId: string; channelId: string; scope?: string | undefined; }>>; /** * * @typedef {SlackTokenPayloadOauth} slackTokenPayloadOauth * @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 SlackTokenPayloadOauth = z.infer; /** * Zod schema for mapping API responses to the SlackTokenPayloadOauth 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 slackTokenPayloadOauthResponse: 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 SlackTokenPayloadOauth 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 slackTokenPayloadOauthRequest: 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=slack-token-payload-oauth.d.ts.map