import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The status of the webhook. */ export declare const Status: { readonly Enabled: "enabled"; readonly Disabled: "disabled"; }; /** * The status of the webhook. */ export type Status = ClosedEnum; /** @internal */ export declare const Status$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Status$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Status$ { /** @deprecated use `Status$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Enabled: "enabled"; readonly Disabled: "disabled"; }>; /** @deprecated use `Status$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Enabled: "enabled"; readonly Disabled: "disabled"; }>; } //# sourceMappingURL=status.d.ts.map