import { z } from "zod"; /** * A single connection entry in the connections map. * Provides a connectionId that maps a named connection alias to a Zapier connection. */ export declare const ConnectionEntrySchema: z.ZodObject<{ connectionId: z.ZodUnion; }, z.core.$strip>; export type ConnectionEntry = z.infer; /** * A map of named connections. Keys are user-defined connection aliases * (e.g. "slack_work", "slack_private") that can be referenced via the * `connection` parameter on action calls. */ export declare const ConnectionsMapSchema: z.ZodRecord; }, z.core.$strip>>; export type ConnectionsMap = z.infer; //# sourceMappingURL=connections.d.ts.map