import { z } from 'zod'; /** * Zod schema for the SlackTokenPayloadWebhook 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 slackTokenPayloadWebhook: z.ZodLazy>; /** * Obtained directly from the incoming_webhook object in the installation response from the Slack API. * @typedef {SlackTokenPayloadWebhook} slackTokenPayloadWebhook - Obtained directly from the incoming_webhook object in the installation response from the Slack API. - Obtained directly from the incoming_webhook object in the installation response from the Slack API. * @property {string} - The URL for the incoming webhook from Slack */ export type SlackTokenPayloadWebhook = z.infer; /** * Zod schema for mapping API responses to the SlackTokenPayloadWebhook 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 slackTokenPayloadWebhookResponse: z.ZodLazy, { url: string; }, { url: string; }>>; /** * Zod schema for mapping the SlackTokenPayloadWebhook 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 slackTokenPayloadWebhookRequest: z.ZodLazy, { url: string; }, { url: string; }>>; //# sourceMappingURL=slack-token-payload-webhook.d.ts.map