import { SignUpNew } from './entities/sign-up-new.entity';
import { Connection } from 'typeorm';
export declare class SignUpNewService {
    private connection;
    constructor(connection: Connection);
    create(createSignUpNewDto: SignUpNew): string;
    check_old_or_new(userEntity: SignUpNew): Promise<{
        status: string;
        userType: string;
    }[]>;
    verifyOld(userEntity: SignUpNew): Promise<{
        messege: string;
        has_profile: boolean;
        user_id: any;
        profile_details: any;
    }[] | {
        status: string;
        messege: string;
    }[]>;
    createnew(userEntity: SignUpNew): Promise<any>;
}
