import { AbstractMessageBatch } from './abstract-message-batch';
import { ISmsMessageBatch, IMessageBatchColumnMapper, IBatchTextContent } from '../../types';
/**
 * Implementation of SMS batch.
 */
export declare class SmsMessageBatch extends AbstractMessageBatch<'sms', IBatchTextContent> implements ISmsMessageBatch {
    constructor(name: string, from: string, texts: string[] | string, columnMapper: IMessageBatchColumnMapper);
}
