import { z } from 'zod'; /** * Zod schema for the GithubConfigPayload 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 githubConfigPayload: z.ZodLazy>; /** * * @typedef {GithubConfigPayload} githubConfigPayload * @property {string} - The signing secret to verify incoming requests from Github */ export type GithubConfigPayload = z.infer; /** * Zod schema for mapping API responses to the GithubConfigPayload 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 githubConfigPayloadResponse: z.ZodLazy, { webhookSigningSecret: string; }, { webhook_signing_secret: string; }>>; /** * Zod schema for mapping the GithubConfigPayload 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 githubConfigPayloadRequest: z.ZodLazy, { webhook_signing_secret: string; }, { webhookSigningSecret: string; }>>; //# sourceMappingURL=github-config-payload.d.ts.map