import * as z from "zod"; export type ScheduleLayerCreatePayloadV2 = { /** * Unique identifier of the layer */ id?: string | undefined; /** * Name of the layer */ name: string; }; /** @internal */ export declare const ScheduleLayerCreatePayloadV2$inboundSchema: z.ZodType; /** @internal */ export type ScheduleLayerCreatePayloadV2$Outbound = { id?: string | undefined; name: string; }; /** @internal */ export declare const ScheduleLayerCreatePayloadV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ScheduleLayerCreatePayloadV2$ { /** @deprecated use `ScheduleLayerCreatePayloadV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduleLayerCreatePayloadV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduleLayerCreatePayloadV2$Outbound` instead. */ type Outbound = ScheduleLayerCreatePayloadV2$Outbound; } //# sourceMappingURL=schedulelayercreatepayloadv2.d.ts.map