import { ReactNode } from 'react';
type AuthenticationFormProps = {
    children?: ReactNode;
    className?: string;
    onSubmit: () => void;
    alternativeActionLabel?: string;
    alternativeActionLink?: string;
    errorMessage?: string;
    forgotPasswordUrl?: string;
    hasError?: boolean;
    loading?: boolean;
    showForgotPassword?: boolean;
    submitButtonLabel?: string;
    title?: string;
};
declare const AuthenticationForm: (props: AuthenticationFormProps) => ReactNode;
export default AuthenticationForm;
