import * as z from "zod"; import { ApiError } from "./apierror.js"; import { Fields } from "./fields.js"; import { ListResponse } from "./listresponse.js"; import { ResourceType } from "./resourcetype.js"; export type ListResourcesByAssetIDsGlobals = { cloud_name?: string | undefined; }; export declare const ListResourcesByAssetIDsGlobals$zodSchema: z.ZodType; export type ListResourcesByAssetIDsRequest = { asset_ids: Array; resource_type?: ResourceType | undefined; fields?: Fields | undefined; }; export declare const ListResourcesByAssetIDsRequest$zodSchema: z.ZodType; export type ListResourcesByAssetIDsResponse = ApiError | ListResponse; export declare const ListResourcesByAssetIDsResponse$zodSchema: z.ZodType; //# sourceMappingURL=listresourcesbyassetidsop.d.ts.map