import { SendOptions } from'../types';
/**
* All SMS providers must implement a single send() method.
*/exportdeclareabstractclassBaseProvider {
/**
* Handle all SMS send requests based on options.type and keys.
*/abstractsend(opts: SendOptions): Promise<any>;
}