import { z } from 'zod'; /** * Zod schema for the SlackConfigPayload 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 slackConfigPayload: z.ZodLazy>; /** * * @typedef {SlackConfigPayload} slackConfigPayload * @property {string} - The Slack app ID that can be found in the app's settings page of the Slack API dashboard. * @property {string} - The Slack client ID that can be found in the app's settings page of the Slack API dashboard. * @property {string} - The Slack client secret that can be found in the app's settings page of the Slack API dashboard. * @property {string} - The Slack signing secret that can be found in the app's settings page of the Slack API dashboard. */ export type SlackConfigPayload = z.infer; /** * Zod schema for mapping API responses to the SlackConfigPayload 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 slackConfigPayloadResponse: z.ZodLazy, { appId: string; clientId: string; clientSecret: string; signingSecret: string; }, { app_id: string; client_id: string; client_secret: string; signing_secret: string; }>>; /** * Zod schema for mapping the SlackConfigPayload 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 slackConfigPayloadRequest: z.ZodLazy, { app_id: string; client_id: string; client_secret: string; signing_secret: string; }, { appId: string; clientId: string; clientSecret: string; signingSecret: string; }>>; //# sourceMappingURL=slack-config-payload.d.ts.map