import * as z from "zod/v4"; import * as models from "../index.js"; export type VerifyOperationCheckGlobals = { /** * 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 VerifyOperationCheckRequest = { /** * Filter by project ID or name. */ project: string; verifyOperationCheckRequest?: models.VerifyOperationCheckRequest | undefined; }; /** @internal */ export type VerifyOperationCheckRequest$Outbound = { project: string; VerifyOperationCheckRequest?: models.VerifyOperationCheckRequest$Outbound | undefined; }; /** @internal */ export declare const VerifyOperationCheckRequest$outboundSchema: z.ZodType; export declare function verifyOperationCheckRequestToJSON(verifyOperationCheckRequest: VerifyOperationCheckRequest): string; //# sourceMappingURL=verifyoperationcheck.d.ts.map