import { IAccount } from '../models'; export declare const storeAccount: (account: any) => void; export declare const processTokenResult: (login: string, result: any, onSuccessCallback?: (token?: string) => any, onErrorCallback?: () => any) => void; export declare const getAccount: (tokenRefreshHandler?: (account: IAccount) => void) => IAccount; export declare const logout: () => void; declare const _default: { getAccount: (tokenRefreshHandler?: (account: IAccount) => void) => IAccount; storeAccount: (account: any) => void; processTokenResult: (login: string, result: any, onSuccessCallback?: (token?: string) => any, onErrorCallback?: () => any) => void; logout: () => void; }; export default _default;