import React, { ReactNode } from 'react';
type SignupProps = {
    className?: string;
    errorMessage?: string;
    hasError?: boolean;
    hasSuccess?: boolean;
    loading?: boolean;
    onSubmit: () => void;
    termsAndConditionsContent?: ReactNode;
};
declare const Signup: (props: SignupProps) => React.ReactNode;
export default Signup;
