import { z } from 'zod'; /** * Zod schema for the GithubConfig 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 githubConfig: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; }; id: string; name: string; }>>; /** * * @typedef {GithubConfig} githubConfig * @property {GithubConfigPayload} * @property {string} * @property {string} */ export type GithubConfig = z.infer; /** * Zod schema for mapping API responses to the GithubConfig 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 githubConfigResponse: z.ZodLazy, { webhookSigningSecret: string; }, { webhook_signing_secret: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhook_signing_secret: string; }; id: string; name: string; }>, { config: { webhookSigningSecret: string; }; id: string; name: string; }, { config: { webhook_signing_secret: string; }; id: string; name: string; }>>; /** * Zod schema for mapping the GithubConfig 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 githubConfigRequest: z.ZodLazy, { webhook_signing_secret: string; }, { webhookSigningSecret: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { webhook_signing_secret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; }; id: string; name: string; }>, { config: { webhook_signing_secret: string; }; id: string; name: string; }, { config: { webhookSigningSecret: string; }; id: string; name: string; }>>; //# sourceMappingURL=github-config.d.ts.map