import type { AuthServiceType } from './service';
import type { ButtonType } from './components';
import type { ProviderType } from './providers';
export type CoreProvicerType = Exclude<ProviderType | AuthServiceType, 'none'>;
export declare const providerToServiceMap: Record<CoreProvicerType, AuthServiceType>;
export declare const providerToButtonMap: Record<CoreProvicerType, ButtonType>;
