import { LocalazyIdentity } from '../model/localazy-identity';
export default class LocalazyUserService {
    static getIdentity(): Promise<LocalazyIdentity | null>;
    static updateIdentity(localazyIdentity: LocalazyIdentity): Promise<any>;
    static deleteIdentity(): Promise<any>;
}
