import { ChatConversation } from './chat-conversation.entity';
import { ChatMessage } from './chat-message.entity';
import { ZnsCampaign } from '@/modules/zns-template/entities/zns-campaign.entity';
export declare class OaAccount {
    id: string;
    name: string;
    oaId: string;
    appId: string;
    appSecret: string;
    accessToken: string;
    refreshToken: string;
    tokenExpiresAt: Date | null;
    channel: 'zalo' | 'facebook';
    conversations: ChatConversation[];
    messages: ChatMessage[];
    campaigns: ZnsCampaign[];
}
