import { Observable } from 'rxjs';
import { AuthenticationMethodService } from '../../../authentication/services/authentication-method.service';
import { Credentials } from '../../../authentication/models/credentials';
import { UserResource } from '../../../resources/interface/user-resource';
export declare class MockAuthenticationMethodService extends AuthenticationMethodService {
    login(credentials: Credentials): Observable<UserResource>;
    logout(): Observable<object>;
}
