import { AxiosInstance } from 'axios';
import SingleSMS from './single';
declare class GeezSMS {
    DEFAULT_HOST: string;
    PACKAGE_VERSION: string;
    DEFAULT_TIMEOUT: number;
    _httpClient: AxiosInstance;
    single: SingleSMS;
    apiKey: string;
    constructor(apikey: string);
}
export default GeezSMS;
