import { AuthProviderFactory, SignInResolver } from '@backstage/plugin-auth-node'; /** * Creates a standardized representation of an integration with a third-party * auth provider. * * The returned object facilitates the creation of provider instances, and * supplies built-in sign-in resolvers for the specific provider. * * @public */ export declare function createAuthProviderIntegration SignInResolver; }>(config: { create: (...args: TCreateOptions) => AuthProviderFactory; resolvers?: TResolvers; }): Readonly<{ create: (...args: TCreateOptions) => AuthProviderFactory; resolvers: Readonly; }>;