import { z } from "zod"; import { TriggerInboxItemSchema, type TriggerInboxItem } from "../../../schemas/TriggerInbox"; export declare const ListTriggerInboxesSchema: z.ZodObject<{ name: z.ZodOptional; status: z.ZodOptional, z.ZodString]>>; pageSize: z.ZodOptional; maxItems: z.ZodOptional; cursor: z.ZodOptional; }, z.core.$strip>; export type ListTriggerInboxesOptions = z.infer; export declare const ListTriggerInboxesApiResponseSchema: z.ZodObject<{ count: z.ZodNumber; next: z.ZodOptional>; previous: z.ZodOptional>; results: z.ZodArray; status: z.ZodUnion, z.ZodString]>; paused_reason: z.ZodNullable, z.ZodString]>>; notification_url: z.ZodNullable; subscription: z.ZodObject<{ connection_id: z.ZodUnion; app_key: z.ZodString; action_key: z.ZodString; inputs: z.ZodRecord; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>; export type ListTriggerInboxesApiResponse = z.infer; export interface ListTriggerInboxesPage { data: TriggerInboxItem[]; nextCursor?: string; } export { TriggerInboxItemSchema }; //# sourceMappingURL=schemas.d.ts.map