import { HttpParams } from "@angular/common/http"; export declare class HttpParamsBuilder { private params; constructor(); append(param: string, value: any): this; appendAll(criteriaModel: object): this; build(): HttpParams; private isNotEmpty; }