export declare class MondayService {
    private graphql;
    getStatus(): {
        enabled: boolean;
        boardIds: string[];
    };
    poll(): Promise<{
        imported: number;
        duplicates: number;
        errors: string[];
    }>;
    private normalizeItem;
}
export declare const mondayService: MondayService;
export declare function startMondayPoller(): void;
export declare function stopMondayPoller(): void;
