import 'dotenv/config';
import { Repository } from 'typeorm';
import { OaAccountMaster } from './entities/oa-account-master.entity';
export declare class OaAccountMasterService {
    private readonly oaRepo;
    constructor(oaRepo: Repository<OaAccountMaster>);
    addOaAccount(tenantId: string, oaId: string, accessToken: string, expiredAt: Date, channel?: 'zalo' | 'facebook'): Promise<OaAccountMaster>;
    findByOaId(oaId: string): Promise<OaAccountMaster | null>;
}
