import { z } from 'zod'; /** * Zod schema for the SlackStartInstallResponseContent 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 slackStartInstallResponseContent: z.ZodLazy; authUrl: z.ZodOptional; scopes: z.ZodOptional>; }, "strip", z.ZodTypeAny, { appId?: string | undefined; authUrl?: string | undefined; scopes?: string[] | undefined; }, { appId?: string | undefined; authUrl?: string | undefined; scopes?: string[] | undefined; }>>; /** * * @typedef {SlackStartInstallResponseContent} slackStartInstallResponseContent * @property {string} * @property {string} * @property {string[]} */ export type SlackStartInstallResponseContent = z.infer; /** * Zod schema for mapping API responses to the SlackStartInstallResponseContent 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 slackStartInstallResponseContentResponse: z.ZodLazy; auth_url: z.ZodOptional; scopes: z.ZodOptional>; }, "strip", z.ZodTypeAny, { app_id?: string | undefined; auth_url?: string | undefined; scopes?: string[] | undefined; }, { app_id?: string | undefined; auth_url?: string | undefined; scopes?: string[] | undefined; }>, { appId: string | undefined; authUrl: string | undefined; scopes: string[] | undefined; }, { app_id?: string | undefined; auth_url?: string | undefined; scopes?: string[] | undefined; }>>; /** * Zod schema for mapping the SlackStartInstallResponseContent 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 slackStartInstallResponseContentRequest: z.ZodLazy; authUrl: z.ZodOptional; scopes: z.ZodOptional>; }, "strip", z.ZodTypeAny, { appId?: string | undefined; authUrl?: string | undefined; scopes?: string[] | undefined; }, { appId?: string | undefined; authUrl?: string | undefined; scopes?: string[] | undefined; }>, { app_id: string | undefined; auth_url: string | undefined; scopes: string[] | undefined; }, { appId?: string | undefined; authUrl?: string | undefined; scopes?: string[] | undefined; }>>; //# sourceMappingURL=slack-start-install-response-content.d.ts.map