import { AxiosResponse } from 'axios';
export declare function useLoginApi(): {
    signIn: (data: object) => Promise< AxiosResponse<any, any>>;
    loginPhonenumber: (data: object) => Promise< AxiosResponse<any, any>>;
    getCaptcha: () => Promise< AxiosResponse<any, any>>;
    signOut: (data: object) => Promise< AxiosResponse<any, any>>;
};
