import { OaAccountMasterService } from './oa-account.service';
export declare class OaAccountMasterController {
    private readonly oaService;
    constructor(oaService: OaAccountMasterService);
    create(body: {
        tenantId: string;
        oaId: string;
        accessToken: string;
        expiredAt: Date;
        channel?: 'zalo' | 'facebook';
    }): Promise<import("./entities/oa-account-master.entity").OaAccountMaster>;
}
