/** * GmailConnector — polls Gmail via the gws CLI tool. * Uses child_process.execSync to call gws CLI commands. * Skips "Using keyring backend:" prefix lines before parsing JSON. */ import type { AuthRequirement, ConnectorConfig, ConnectorHealth, IConnector, NormalizedItem } from '../framework/types.js'; export declare class GmailConnector implements IConnector { readonly name = "gmail"; readonly type: "api"; private lastPollTime; private lastPollCount; private lastError; constructor(_config: ConnectorConfig); init(): Promise; dispose(): Promise; healthCheck(): Promise; getAuthRequirements(): AuthRequirement[]; authenticate(): Promise; private getHeader; poll(since: Date): Promise; } //# sourceMappingURL=index.d.ts.map