import { GithubCredentialsProvider, ScmIntegrationRegistry } from '@backstage/integration'; /** * Creates a new action that enables GitHub Pages for a repository. * * @public */ export declare function createGithubPagesEnableAction(options: { integrations: ScmIntegrationRegistry; githubCredentialsProvider?: GithubCredentialsProvider; }): import("@backstage/plugin-scaffolder-node").TemplateAction<{ repoUrl: string; buildType?: "legacy" | "workflow"; sourceBranch?: string; sourcePath?: "/" | "/docs"; token?: string; }, import("@backstage/types").JsonObject, "v1">;