import { Observable } from 'rxjs';
import { GroupTypesModel } from '../models/group-types.model';
import { HttpClientService } from '../shared/http-module/http.service';
export declare class GroupTypesService {
    private http;
    constructor(http: HttpClientService);
    getGroupTypes(url: any): Observable<GroupTypesModel[]>;
}
