import { bodyOptions } from "./interfaces"; interface SendToSingleInterfaceOptions extends bodyOptions { subscriber: string; } export default class SDK { constructor(apiKey: string); sendToAll(options: bodyOptions): Promise; sendToSingle(options: SendToSingleInterfaceOptions): Promise; } export {};