@criipto/verify-react
Version:
Verify SDK for React Single Page Applications
18 lines (17 loc) • 714 B
TypeScript
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 {};