UNPKG

@criipto/verify-react

Version:

Verify SDK for React Single Page Applications

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