import { z } from 'zod'; /** * Zod schema for the Enterprise 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 enterprise: z.ZodLazy>; /** * * @typedef {Enterprise} enterprise * @property {string} - Enterprise grid identifier. * @property {string} - Enterprise grid name. */ export type Enterprise = z.infer; /** * Zod schema for mapping API responses to the Enterprise 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 enterpriseResponse: z.ZodLazy, { id: string; name: string; }, { id: string; name: string; }>>; /** * Zod schema for mapping the Enterprise 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 enterpriseRequest: z.ZodLazy, { id: string; name: string; }, { id: string; name: string; }>>; //# sourceMappingURL=enterprise.d.ts.map