import { User } from 'ngx-login-client';
import { Observable } from 'rxjs';
import { HttpClientService } from './../shared/http-module/http.service';
export declare class CollaboratorService {
    private httpClienService;
    constructor(httpClienService: HttpClientService);
    getCollaborators(url: string): Observable<User[]>;
}
