import * as z from "zod"; import { EventType } from "./eventtype.js"; import { UriType } from "./uritype.js"; export type TriggerInfo = { id?: string | undefined; product_environment_id?: string | undefined; uri_type: UriType; uri: string; event_type?: EventType | undefined; created_at?: string | undefined; updated_at?: string | undefined; }; export declare const TriggerInfo$zodSchema: z.ZodType; //# sourceMappingURL=triggerinfo.d.ts.map