import { z } from 'zod'; import { CredentialType } from '@bubblelab/shared-schemas'; export declare const AcceptedInvitationInfoSchema: z.ZodObject<{ name: z.ZodString; headline: z.ZodOptional; mutual_connections: z.ZodOptional; profile_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; headline?: string | undefined; profile_url?: string | undefined; mutual_connections?: string | undefined; }, { name: string; headline?: string | undefined; profile_url?: string | undefined; mutual_connections?: string | undefined; }>; export type AcceptedInvitationInfo = z.infer; export declare const LinkedInAcceptInvitationsToolParamsSchema: z.ZodObject<{ operation: z.ZodEnum<["accept_invitations"]>; count: z.ZodDefault>; 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: "accept_invitations"; count: number; credentials?: Partial> | undefined; proxy?: { type: "none"; } | { type: "browserbase"; } | { type: "custom"; proxy: { id: string; server: string; password?: string | undefined; username?: string | undefined; }; } | undefined; }, { operation: "accept_invitations"; credentials?: Partial> | undefined; count?: number | undefined; proxy?: { type: "none"; } | { type: "browserbase"; } | { type: "custom"; proxy: { id: string; server: string; password?: string | undefined; username?: string | undefined; }; } | undefined; }>; export declare const LinkedInAcceptInvitationsToolResultSchema: z.ZodObject<{ operation: z.ZodEnum<["accept_invitations"]>; success: z.ZodBoolean; accepted: z.ZodOptional; mutual_connections: z.ZodOptional; profile_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; headline?: string | undefined; profile_url?: string | undefined; mutual_connections?: string | undefined; }, { name: string; headline?: string | undefined; profile_url?: string | undefined; mutual_connections?: string | undefined; }>, "many">>; accepted_count: z.ZodOptional; skipped_count: z.ZodOptional; message: z.ZodOptional; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; operation: "accept_invitations"; message?: string | undefined; accepted?: { name: string; headline?: string | undefined; profile_url?: string | undefined; mutual_connections?: string | undefined; }[] | undefined; accepted_count?: number | undefined; skipped_count?: number | undefined; }, { error: string; success: boolean; operation: "accept_invitations"; message?: string | undefined; accepted?: { name: string; headline?: string | undefined; profile_url?: string | undefined; mutual_connections?: string | undefined; }[] | undefined; accepted_count?: number | undefined; skipped_count?: number | undefined; }>; export type LinkedInAcceptInvitationsToolParamsInput = z.input; export type LinkedInAcceptInvitationsToolResult = z.output; //# sourceMappingURL=schema.d.ts.map