import { GithubCredentialsProvider, ScmIntegrationRegistry } from '@backstage/integration'; /** * Creates new action that creates a webhook for a repository on GitHub. * @public */ export declare function createGithubWebhookAction(options: { integrations: ScmIntegrationRegistry; defaultWebhookSecret?: string; githubCredentialsProvider?: GithubCredentialsProvider; }): import("@backstage/plugin-scaffolder-node").TemplateAction<{ repoUrl: string; webhookUrl: string; webhookSecret?: string; events?: string[]; active?: boolean; contentType?: "form" | "json"; insecureSsl?: boolean; token?: string; }, import("@backstage/types").JsonObject, "v1">;