export declare class ChatSyncLog {
    id: string;
    oaAccountId: string;
    status: 'pending' | 'running' | 'success' | 'failed';
    totalConversations: number;
    totalMessages: number;
    errorMessage?: string;
    startedAt: Date;
    finishedAt?: Date;
}
