import * as React from 'react';
import { UsernameAttribute } from './types';
export interface SignInProps {
    validationData?: {
        [key: string]: string;
    };
    hideSignUpLink?: boolean;
    hideForgotPasswordLink?: boolean;
    usernameAttribute?: UsernameAttribute;
}
export declare const SignIn: React.FC<SignInProps>;
