import { Observable } from 'rxjs'; import { AuthHttp } from 'angular2-jwt'; import { UrlParamBuilderService } from '../service/url-param-builder.service'; import { IErrorHandler } from '../error/error-handler.interface'; import { CardCollection } from './card.collection'; import { CardCollectionConverter } from './card.collection.converter'; export declare class CardService { private authHttp; private collectionConverter; private baseUrl; private urlParamBuilderService; private errorHandler; constructor(authHttp: AuthHttp, collectionConverter: CardCollectionConverter, baseUrl: string, urlParamBuilderService: UrlParamBuilderService, errorHandler: IErrorHandler); getMany(filters?: { [key: string]: any; }, sort?: string[], page?: number, limit?: number): Observable; }