import { z } from "zod"; import { GmailBaseTool, GmailBaseToolParams } from "./base.js"; export declare class GmailSendMessage extends GmailBaseTool { name: string; schema: z.ZodObject<{ message: z.ZodString; to: z.ZodArray; subject: z.ZodString; cc: z.ZodOptional>; bcc: z.ZodOptional>; }, "strip", z.ZodTypeAny, { message: string; subject: string; to: string[]; cc?: string[] | undefined; bcc?: string[] | undefined; }, { message: string; subject: string; to: string[]; cc?: string[] | undefined; bcc?: string[] | undefined; }>; description: string; constructor(fields?: GmailBaseToolParams); private createEmailMessage; _call({ message, to, subject, cc, bcc, }: z.output): Promise; } export type SendMessageSchema = { message: string; to: string[]; subject: string; cc?: string[]; bcc?: string[]; };