export declare class RegisterActions { static REGISTER_REQUEST: string; static REGISTER_SUCCESS: string; static REGISTER_FAILURE: string; static registerUser: (payload: any) => { type: string; payload: any; }; static registerSuccess: (payload: any) => { type: string; payload: any; }; static registerFailure: (payload: any) => { type: string; payload: any; }; }