import { Core } from '@strapi/strapi'; import { DeploymentType, GithubActionEnabledResponse } from "../../types"; declare const _default: ({ strapi }: { strapi: Core.Strapi; }) => { telegramBot: Core.Service; getButtons(apiID: string): Promise; sendNotification(data: any, actionType: DeploymentType): void; trigger(buttonID: string, id: string): Promise<{ executed: boolean; type?: undefined; status?: undefined; message?: undefined; } | { type: string; status: boolean; message: any; executed?: undefined; }>; }; export default _default;