import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OperationsPlugin } from "./operationsplugin.js"; import { OperatorInstallationsRollup } from "./operatorinstallationsrollup.js"; export type ListOperationsPluginsResponse = { plugins: Array; /** * Rollup of this project's pull-mode installations by operations-bundle sync status, reflecting the currently enabled plugin set. */ installations: OperatorInstallationsRollup; }; /** @internal */ export declare const ListOperationsPluginsResponse$inboundSchema: z.ZodType; export declare function listOperationsPluginsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listoperationspluginsresponse.d.ts.map