import PropTypes from 'prop-types';
import { LocalazyIdentity } from '../../user/model/localazy-identity';
interface LoginButtonProps {
    onResultFetched: (result: LocalazyIdentity) => void;
}
declare const LoginButton: {
    (props: LoginButtonProps): import("react/jsx-runtime").JSX.Element;
    propTypes: {
        onResultFetched: PropTypes.Validator<(...args: any[]) => any>;
    };
};
export default LoginButton;
