import { SignUpService } from "./sign_up.service";
import { User } from "./entities/sign_up.entity";
export declare class SignUpController {
    private readonly signUpService;
    constructor(signUpService: SignUpService);
    check_old_or_new(userEntity: any): Promise<string>;
    getDetails(userEntity: User): Promise<{
        status: string;
        message: string;
        details: any;
    }[] | {
        status: string;
        message: string;
    }[]>;
    verifyOld(userEntity: any): Promise<any>;
    createnew(userEntity: User): Promise<any>;
    findsettings(id: string): Promise<any>;
    updatePassword(userEntity: User, headers: any, username: string): Promise<any>;
    updateStettings(id: string, userEntity: User): Promise<any>;
    remove(id: string): Promise<{
        status: string;
        message: string;
    }[]>;
    updateFCM(userEntity: User): Promise<{
        status: string;
        message: string;
    }>;
    getAccessToken(request: Request, username: string): Promise<{
        status: string;
        message: string;
        accessToken: any;
    } | {
        status: string;
        message: string;
    }>;
    getpatientlist(userEntity: any): Promise<{
        status: string;
        status_code: number;
        message: string;
    }[] | {
        status: string;
        status_code: number;
        messege: string;
        patient_id_list: any;
    }[] | {
        status: string;
        message: string;
    }>;
}
