import { IEvolutionDatabaseQueue } from '../interfaces/i-evolution-database-queue';
export declare class EvolutionDatabaseQueueEntity implements IEvolutionDatabaseQueue {
    active: boolean;
    baseUrl: string;
    createdAt: number;
    id: string;
    instanceName: string;
    globalApikey: string;
    log: string[];
    sendAt: number;
    notified: boolean;
    notifiedAt: number;
    phoneNumber: string;
    text: string;
    updatedAt: number;
    constructor(data?: Partial<EvolutionDatabaseQueueEntity>);
}
