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