import { z } from "zod"; import type { FunctionOptions } from "../../../types/functions"; import { TriggerInboxItemSchema, type TriggerInboxItem } from "../../../schemas/TriggerInbox"; export declare const CreateTriggerInboxSchema: z.ZodObject<{ name: z.ZodOptional; app: z.ZodString & { _def: z.core.$ZodStringDef & import("../../..").PositionalMetadata; }; action: z.ZodString & { _def: z.core.$ZodStringDef & import("../../..").PositionalMetadata; }; connection: z.ZodOptional>>; inputs: z.ZodOptional>; notificationUrl: z.ZodOptional; }, z.core.$strip>; export type CreateTriggerInboxOptions = z.infer & FunctionOptions; export interface CreateTriggerInboxResult { data: TriggerInboxItem; } export { TriggerInboxItemSchema }; //# sourceMappingURL=schemas.d.ts.map