import * as z from "zod"; import { ApiError } from "./apierror.js"; import { EventType } from "./eventtype.js"; import { TriggerListResponse } from "./triggerlistresponse.js"; export type ListTriggerGlobals = { cloud_name?: string | undefined; }; export declare const ListTriggerGlobals$zodSchema: z.ZodType; export type ListTriggerRequest = { event_type?: EventType | undefined; }; export declare const ListTriggerRequest$zodSchema: z.ZodType; export type ListTriggerResponse = TriggerListResponse | ApiError; export declare const ListTriggerResponse$zodSchema: z.ZodType; //# sourceMappingURL=listtriggerop.d.ts.map