import { ThunkAction } from 'redux-thunk'; export declare const AUTH_INIT = "AUTH_INIT"; export declare const AUTH_LOGIN = "AUTH_LOGIN"; export declare const AUTH_LOGOUT = "AUTH_LOGOUT"; export declare const AUTH_REFRESH = "AUTH_REFRESH"; export declare function authInit(): { type: string; }; export declare function authLogin(username: string, password: string): ThunkAction, any, any>; export declare function authLogout(): ThunkAction; export declare function authRefresh(): ThunkAction, any, any>;