import * as z from "zod/v4"; export type GetOperationsPolicyGlobals = { /** * 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 GetOperationsPolicyRequest = { /** * Filter by project ID or name. */ project: string; }; /** @internal */ export type GetOperationsPolicyRequest$Outbound = { project: string; }; /** @internal */ export declare const GetOperationsPolicyRequest$outboundSchema: z.ZodType; export declare function getOperationsPolicyRequestToJSON(getOperationsPolicyRequest: GetOperationsPolicyRequest): string; //# sourceMappingURL=getoperationspolicy.d.ts.map