import { BaseModuleEntity } from '../base/baseModuleEntity';
export declare class SmsLogInBoxModel extends BaseModuleEntity<string> {
    linkPrivateConfigId: string;
    linkApiNumberId: string;
    receiverDate: Date;
    analysisDate: Date;
    senderNumber: string;
    receiverNumber: string;
    inBoxType: string;
    message: string;
    isRead: boolean;
    isProcessed: boolean;
    credit: number;
    relayUrlStatus: boolean;
    relayUrlResult: string;
}
