import { z } from 'zod'; /** * Zod schema for the IncomingWebhook 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 incomingWebhook: z.ZodLazy>; /** * * @typedef {IncomingWebhook} incomingWebhook * @property {string} - Human readable name for the webhook channel. * @property {string} - URL users can visit to manage the webhook. * @property {string} - Webhook URL that Slack posts events to. */ export type IncomingWebhook = z.infer; /** * Zod schema for mapping API responses to the IncomingWebhook 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 incomingWebhookResponse: z.ZodLazy, { channel: string; configurationUrl: string; url: string; }, { channel: string; url: string; configuration_url: string; }>>; /** * Zod schema for mapping the IncomingWebhook 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 incomingWebhookRequest: z.ZodLazy, { channel: string; configuration_url: string; url: string; }, { channel: string; url: string; configurationUrl: string; }>>; //# sourceMappingURL=incoming-webhook.d.ts.map