import { Config, IConfiguration } from '../classes/config'; import { ISNSResponse } from '../types'; interface IObject { [key: string]: any; } export declare class Amazon { config: Config; constructor(config: IConfiguration); callApiMethod(action: string, params?: IObject, bearer?: string): Promise; callMwsMethod(method: string, version: string, params?: IObject): Promise; parseSNSResponse(response: ISNSResponse): Promise; private parseMwsResponse; private parseIPNMessage; private parseApiResponse; private parseString; } export {};