import * as z from "zod/v4"; export type ListOperationsPluginsGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type ListOperationsPluginsRequest = { /** * Filter by project ID or name. */ project: string; }; /** @internal */ export type ListOperationsPluginsRequest$Outbound = { project: string; }; /** @internal */ export declare const ListOperationsPluginsRequest$outboundSchema: z.ZodType; export declare function listOperationsPluginsRequestToJSON(listOperationsPluginsRequest: ListOperationsPluginsRequest): string; //# sourceMappingURL=listoperationsplugins.d.ts.map