import { ApiService } from '../core/ApiService'; import { ObjectService } from "./ObjectService"; export declare class ManageRequestService { private api; private _object; constructor(api: ApiService, _object: ObjectService); get({where, limit, order, offset}: { where: any; limit?: number; order?: string; offset?: number; }): any; count(where: any): any; getBySubjectId(subjectId: any): any; post(data: any): any; del(id: any): any; approve(id: any): any; deny(id: any): any; private changeStatus(id, action); }