import { SocialProvider } from 'better-auth/social-providers';
import { AuthSocialProvider } from '../config/social-provider-config';
/**
 * Mapping of social authentication provider identifiers to their human-readable display names.
 */
export declare const providerNames: Record<SocialProvider, string>;
/**
 * Get the human-readable display name for an authentication provider.
 *
 * @param provider - The provider identifier (e.g., "github", "google").
 * @returns The mapped display name for `provider` if available, otherwise `provider` with its first character capitalized.
 */
export declare function getProviderName(provider: AuthSocialProvider | string): string;
