import * as z from "zod"; export type ScheduleLayerV2 = { /** * Unique identifier of the layer */ id?: string | undefined; /** * Name of the layer */ name?: string | undefined; }; /** @internal */ export declare const ScheduleLayerV2$inboundSchema: z.ZodType; /** @internal */ export type ScheduleLayerV2$Outbound = { id?: string | undefined; name?: string | undefined; }; /** @internal */ export declare const ScheduleLayerV2$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 ScheduleLayerV2$ { /** @deprecated use `ScheduleLayerV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduleLayerV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduleLayerV2$Outbound` instead. */ type Outbound = ScheduleLayerV2$Outbound; } //# sourceMappingURL=schedulelayerv2.d.ts.map