import { NgEntityService } from '@datorama/akita-ng-entity-service'; import { RequestStatus } from './request.model'; import { RequestState, RequestStore } from './request.store'; export declare class RequestService extends NgEntityService { protected store: RequestStore; constructor(store: RequestStore); approve(id: string): import("rxjs").Observable; reject(id: string): import("rxjs").Observable; removeById(id: string): void; setStatus(id: string, status: RequestStatus): void; }