import 'dotenv/config';
import { FacebookAuthService } from './facebook-auth.service';
import { FacebookSyncService } from './facebook-sync.service';
export declare class FacebookSendController {
    private readonly authService;
    private readonly fbSyncService;
    constructor(authService: FacebookAuthService, fbSyncService: FacebookSyncService);
    sendMessage(conversationId: string, messages: string, subdomain: string, files: {
        file?: Express.Multer.File[];
    }): Promise<{
        success: boolean;
        result: {
            jobId: import("bull").JobId;
            status: string;
        }[];
    }>;
}
