export declare const triggerTools: { listTriggerTypes: import("ai").Tool<{ toolkit?: string | undefined; limit?: number | undefined; }, { items: { slug: string; name: string; description: string; toolkit: { slug: string; name: string; logo: string; }; config: Record; payload: Record; version?: string | undefined; instructions?: string | undefined; }[]; totalPages: number; nextCursor?: string | null | undefined; }>; showTriggerType: import("ai").Tool<{ triggerSlug: string; }, { slug: string; name: string; description: string; toolkit: { slug: string; name: string; logo: string; }; config: Record; payload: Record; version?: string | undefined; instructions?: string | undefined; }>; listTriggers: import("ai").Tool<{ limit?: number | undefined; showDisabled?: boolean | undefined; }, { items: { connectedAccountId: string; id: string; updatedAt: string; disabledAt: string | null; state: Record; triggerConfig: Record; triggerName: string; uuid?: string | undefined; triggerData?: string | undefined; }[]; nextCursor: string | null; totalPages: number; }>; createTrigger: import("ai").Tool<{ triggerSlug: string; triggerConfig?: Record | undefined; connectedAccountId?: string | undefined; dryRun?: boolean | undefined; }, { triggerId: string; } | { triggerConfig?: Record; connectedAccountId?: string; userId: string; triggerSlug: string; dryRun: boolean; }>; }; //# sourceMappingURL=triggers.tool.d.ts.map