import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The current state of the Integration. */ export declare const IntegrationState: { readonly Disabled: "disabled"; readonly NeedsConfiguration: "needs_configuration"; readonly Configured: "configured"; }; /** * The current state of the Integration. */ export type IntegrationState = ClosedEnum; /** @internal */ export declare const IntegrationState$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IntegrationState$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 IntegrationState$ { /** @deprecated use `IntegrationState$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Disabled: "disabled"; readonly NeedsConfiguration: "needs_configuration"; readonly Configured: "configured"; }>; /** @deprecated use `IntegrationState$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Disabled: "disabled"; readonly NeedsConfiguration: "needs_configuration"; readonly Configured: "configured"; }>; } //# sourceMappingURL=integrationstate.d.ts.map