export declare const GET_CURRENT_USER: string; export declare const GET_CURRENT_USER_SUCCESS: string; export declare const GET_CURRENT_USER_FAIL: string; export declare const RESET_BIOMETRIC: string; export declare const RESET_BIOMETRIC_SUCCESS: string; export declare const RESET_BIOMETRIC_FAIL: string; export declare const RESET_PASSWORD: string; export declare const RESET_PASSWORD_SUCCESS: string; export declare const RESET_PASSWORD_FAIL: string; export declare const UPDATE_PROFILE: string; export declare const UPDATE_PROFILE_SUCCESS: string; export declare const UPDATE_PROFILE_FAIL: string; export declare const UPLOAD__AVATAR: string; export declare const UPDATE__AVATAR: string; export declare function getCurrentUser(): { type: string; }; export declare function getCurrentUserFail(): { type: string; }; export declare function getCurrentUserSuccess(data: any): { type: string; payload: any; }; export declare function resetBiometric(): { type: string; }; export declare function resetBiometricFail(): { type: string; }; export declare function resetBiometricSuccess(data: any): { type: string; payload: any; }; export declare function resetPassword(data: { email: string; }): { type: string; payload: { email: string; }; }; export declare function resetPasswordFail(): { type: string; }; export declare function resetPasswordSuccess(data: any): { type: string; payload: any; }; export declare function updateProfile(data: { email: string; }): { type: string; payload: { email: string; }; }; export declare function updateProfileFail(): { type: string; }; export declare function updateProfileSuccess(data: any): { type: string; payload: any; }; export declare function uploadAvatar(data: any): { type: string; payload: any; }; export declare function updateAvatar(data: any): { type: string; payload: any; };