import { BaseModuleEntity } from '../base/baseModuleEntity';
import { SmsLogOutBoxScheduleRunInfoModel } from './smsLogOutBoxScheduleRunInfoModel';
export declare class SmsLogOutBoxQueueModel extends BaseModuleEntity<string> {
    message: string;
    isFlash: boolean;
    linkApiPathId: string;
    linkFromNumber: string;
    scheduleSendStart: Date;
    scheduleSendExpire: Date;
    toNumbers: string;
    statusNumberFiltering: boolean;
    statusTextFiltering: boolean;
    statusNotStableApi: boolean;
    statusOutOfServiceApi: boolean;
    numberFilteringChar: string;
    textFilteringChar: string;
    queueCountRun: number;
    queueAllowNextRun: Date;
    queueLockedRun?: Date;
    queueLockerExpire?: Date;
    queueLockerId: string;
    queueCompleted: boolean;
    queueCompleteDate: Date;
    queueLockerMicroservice: string;
    scheduleRunInfos: SmsLogOutBoxScheduleRunInfoModel[];
}
