import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The current authorization status of the data connection. */ export declare const DataConnectionStatus: { readonly PendingAuth: "PendingAuth"; readonly Linked: "Linked"; readonly Unlinked: "Unlinked"; readonly Deauthorized: "Deauthorized"; }; /** * The current authorization status of the data connection. */ export type DataConnectionStatus = ClosedEnum; /** @internal */ export declare const DataConnectionStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DataConnectionStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=dataconnectionstatus.d.ts.map