interface SendSmsOptions {
    apiKey: string;
    receptor: string;
    token: any;
    template: string;
}
export declare function sendSms({ apiKey, receptor, token, template }: SendSmsOptions): Promise<any>;
export {};
