import { IWebhookApplication } from 'pipes-nodejs-sdk/dist/lib/Application/Base/IWebhookApplication'; import { ABasicApplication } from 'pipes-nodejs-sdk/dist/lib/Authorization/Type/Basic/ABasicApplication'; import ProcessDto from 'pipes-nodejs-sdk/dist/lib/Utils/ProcessDto'; import { ApplicationInstall } from 'pipes-nodejs-sdk/dist/lib/Application/Database/ApplicationInstall'; import HttpMethods from 'pipes-nodejs-sdk/dist/lib/Transport/HttpMethods'; import RequestDto from 'pipes-nodejs-sdk/dist/lib/Transport/Curl/RequestDto'; import Form from 'pipes-nodejs-sdk/dist/lib/Application/Model/Form/Form'; import WebhookSubscription from 'pipes-nodejs-sdk/dist/lib/Application/Model/Webhook/WebhookSubscription'; import ResponseDto from 'pipes-nodejs-sdk/dist/lib/Transport/Curl/ResponseDto'; import { BodyInit } from 'node-fetch'; export declare const SHIPSTATION_URL = "https://ssapi.shipstation.com"; export declare const ORDER_NOTIFY = "ORDER_NOTIFY"; export default class ShipstationApplication extends ABasicApplication implements IWebhookApplication { getDescription: () => string; getName: () => string; getPublicName: () => string; getLogo: () => string; getRequestDto(dto: ProcessDto, applicationInstall: ApplicationInstall, method: HttpMethods, url?: string, data?: BodyInit): RequestDto; getSettingsForm: () => Form; getWebhookSubscribeRequestDto(applicationInstall: ApplicationInstall, subscription: WebhookSubscription, url: string): RequestDto; getWebhookSubscriptions: () => WebhookSubscription[]; getWebhookUnsubscribeRequestDto(applicationInstall: ApplicationInstall, id: string): RequestDto; processWebhookSubscribeResponse: (dto: ResponseDto, applicationInstall: ApplicationInstall) => string; processWebhookUnsubscribeResponse: (dto: ResponseDto) => boolean; private _getToken; }