import { z } from 'zod'; import { CredentialType } from '@bubblelab/shared-schemas'; export declare const SentInvitationInfoSchema: z.ZodObject<{ name: z.ZodString; headline: z.ZodOptional; sent_date: z.ZodString; profile_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; sent_date: string; headline?: string | undefined; profile_url?: string | undefined; }, { name: string; sent_date: string; headline?: string | undefined; profile_url?: string | undefined; }>; export type SentInvitationInfo = z.infer; export declare const LinkedInSentInvitationsToolParamsSchema: z.ZodObject<{ operation: z.ZodEnum<["get_sent_invitations"]>; credentials: z.ZodOptional, z.ZodString>>; proxy: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "none"; }, { type: "none"; }>, z.ZodObject<{ type: z.ZodEnum<["browserbase"]>; }, "strip", z.ZodTypeAny, { type: "browserbase"; }, { type: "browserbase"; }>, z.ZodObject<{ type: z.ZodEnum<["custom"]>; proxy: z.ZodObject<{ id: z.ZodString; server: z.ZodString; username: z.ZodOptional; password: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; server: string; password?: string | undefined; username?: string | undefined; }, { id: string; server: string; password?: string | undefined; username?: string | undefined; }>; }, "strip", z.ZodTypeAny, { type: "custom"; proxy: { id: string; server: string; password?: string | undefined; username?: string | undefined; }; }, { type: "custom"; proxy: { id: string; server: string; password?: string | undefined; username?: string | undefined; }; }>]>>; }, "strip", z.ZodTypeAny, { operation: "get_sent_invitations"; credentials?: Partial> | undefined; proxy?: { type: "none"; } | { type: "browserbase"; } | { type: "custom"; proxy: { id: string; server: string; password?: string | undefined; username?: string | undefined; }; } | undefined; }, { operation: "get_sent_invitations"; credentials?: Partial> | undefined; proxy?: { type: "none"; } | { type: "browserbase"; } | { type: "custom"; proxy: { id: string; server: string; password?: string | undefined; username?: string | undefined; }; } | undefined; }>; export declare const LinkedInSentInvitationsToolResultSchema: z.ZodObject<{ operation: z.ZodEnum<["get_sent_invitations"]>; success: z.ZodBoolean; invitations: z.ZodOptional; sent_date: z.ZodString; profile_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; sent_date: string; headline?: string | undefined; profile_url?: string | undefined; }, { name: string; sent_date: string; headline?: string | undefined; profile_url?: string | undefined; }>, "many">>; total_count: z.ZodOptional; message: z.ZodOptional; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "get_sent_invitations"; message?: string | undefined; total_count?: number | undefined; invitations?: { name: string; sent_date: string; headline?: string | undefined; profile_url?: string | undefined; }[] | undefined; }, { error: string; success: boolean; operation: "get_sent_invitations"; message?: string | undefined; total_count?: number | undefined; invitations?: { name: string; sent_date: string; headline?: string | undefined; profile_url?: string | undefined; }[] | undefined; }>; export type LinkedInSentInvitationsToolParamsInput = z.input; export type LinkedInSentInvitationsToolResult = z.output; //# sourceMappingURL=schema.d.ts.map