/** * Gmail Actions for Browser Use * Defines agent actions for Gmail integration including 2FA code retrieval, * email reading, and authentication management. */ import type { Controller } from '../../controller'; import { GmailService } from './service'; /** * Register Gmail actions with the provided controller */ export declare function registerGmailActions(controller: Controller, options?: { gmailService?: GmailService; accessToken?: string; }): Controller; export { GmailService }; //# sourceMappingURL=actions.d.ts.map