import * as z from "zod"; export type TriggerSlim = { /** * Human readable identifier for this trigger */ label: string; /** * Unique name of the trigger */ name: string; }; /** @internal */ export declare const TriggerSlim$inboundSchema: z.ZodType; /** @internal */ export type TriggerSlim$Outbound = { label: string; name: string; }; /** @internal */ export declare const TriggerSlim$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 TriggerSlim$ { /** @deprecated use `TriggerSlim$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TriggerSlim$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TriggerSlim$Outbound` instead. */ type Outbound = TriggerSlim$Outbound; } //# sourceMappingURL=triggerslim.d.ts.map