import { type Language } from '../i18n';
import { AuthMethodButtonContainerProps } from './AuthMethodButton';
import './AuthMethodSelector/AuthMethodSelector.css';
interface AuthMethodSelectorProps {
    acrValues?: string[];
    language?: Language;
    onSelect?: (acrValue: string) => void;
    redirectUri?: string;
    popup?: AuthMethodButtonContainerProps['popup'];
    userAgent?: string;
}
export default function AuthMethodSelector(props: AuthMethodSelectorProps): import("react/jsx-runtime").JSX.Element;
type SwedenProps = Omit<AuthMethodSelectorProps, 'acrValues'> & {
    acrValues: string[];
};
export declare function Sweden(props: SwedenProps): import("react/jsx-runtime").JSX.Element;
export {};
