import AOAuth2Application from 'pipes-nodejs-sdk/dist/lib/Authorization/Type/OAuth2/AOAuth2Application'; import Form from 'pipes-nodejs-sdk/dist/lib/Application/Model/Form/Form'; 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 { BodyInit } from 'node-fetch'; export default class SlackApplication extends AOAuth2Application { getAuthUrl: () => string; getTokenUrl: () => string; getDescription: () => string; getName: () => string; getPublicName: () => string; getLogo: () => string; getRequestDto: (_dto: ProcessDto, applicationInstall: ApplicationInstall, method: HttpMethods, url?: string, data?: BodyInit) => RequestDto | Promise; getScopes: (applicationInstall: ApplicationInstall) => string[]; getSettingsForm: () => Form; }