import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';

type OAuthAccount = "GithubOAuth" | "GoogleOAuth" | "MicrosoftOAuth" | "AppleOAuth";
declare const OAuthIcon: ({ account, ...props }: React.ComponentPropsWithoutRef<"svg"> & {
    account: OAuthAccount;
}) => react_jsx_runtime.JSX.Element;
declare const getOAuthName: (account: OAuthAccount) => "Apple" | "GitHub" | "Google" | "Microsoft";

export { type OAuthAccount, OAuthIcon, getOAuthName };
