export declare class OgenzoSMS {
    username: string;
    apiKey: string;
    constructor(username: string, apiKey: string);
    sendSMS(number: string, msg: string): Promise<any>;
}
