import { z } from 'zod'; /** * Zod schema for the SlackStartInstall 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 slackStartInstall: z.ZodLazy; extraScopes: z.ZodOptional>; redirectUrl: z.ZodOptional; }, "strip", z.ZodTypeAny, { appId: string; redirectUrl?: string | undefined; authUrl?: string | undefined; extraScopes?: string[] | undefined; }, { appId: string; redirectUrl?: string | undefined; authUrl?: string | undefined; extraScopes?: string[] | undefined; }>>; /** * * @typedef {SlackStartInstall} slackStartInstall * @property {string} - Slack app ID that the installation flow should use. * @property {string} - Optional override for the authorization URL returned to the client. * @property {string[]} - Additional OAuth scopes to request during installation. * @property {string} - Custom redirect URL to use after OAuth completes. */ export type SlackStartInstall = z.infer; /** * Zod schema for mapping API responses to the SlackStartInstall 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 slackStartInstallResponse: z.ZodLazy; extra_scopes: z.ZodOptional>; redirect_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { app_id: string; redirect_url?: string | undefined; auth_url?: string | undefined; extra_scopes?: string[] | undefined; }, { app_id: string; redirect_url?: string | undefined; auth_url?: string | undefined; extra_scopes?: string[] | undefined; }>, { appId: string; authUrl: string | undefined; extraScopes: string[] | undefined; redirectUrl: string | undefined; }, { app_id: string; redirect_url?: string | undefined; auth_url?: string | undefined; extra_scopes?: string[] | undefined; }>>; /** * Zod schema for mapping the SlackStartInstall 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 slackStartInstallRequest: z.ZodLazy; extraScopes: z.ZodOptional>; redirectUrl: z.ZodOptional; }, "strip", z.ZodTypeAny, { appId: string; redirectUrl?: string | undefined; authUrl?: string | undefined; extraScopes?: string[] | undefined; }, { appId: string; redirectUrl?: string | undefined; authUrl?: string | undefined; extraScopes?: string[] | undefined; }>, { app_id: string; auth_url: string | undefined; extra_scopes: string[] | undefined; redirect_url: string | undefined; }, { appId: string; redirectUrl?: string | undefined; authUrl?: string | undefined; extraScopes?: string[] | undefined; }>>; //# sourceMappingURL=slack-start-install.d.ts.map