import { FilterParams } from 'pip-services3-commons-node'; import { PagingParams } from 'pip-services3-commons-node'; import { DataPage } from 'pip-services3-commons-node'; import { CommandableHttpClient } from 'pip-services3-rpc-node'; import { CurrentObjectStateV1 } from './CurrentObjectStateV1'; import { ICurrentObjectStatesClientV1 } from './ICurrentObjectStatesClientV1'; export declare class CurrentObjectStatesHttpClientV1 extends CommandableHttpClient implements ICurrentObjectStatesClientV1 { constructor(config?: any); getStates(correlationId: string, orgId: string, filter: FilterParams, paging: PagingParams, callback: (err: any, page: DataPage) => void): void; getStateById(correlationId: string, orgId: string, id: string, callback: (err: any, state: CurrentObjectStateV1) => void): void; setState(correlationId: string, orgId: string, state: CurrentObjectStateV1, callback: (err: any, state: CurrentObjectStateV1) => void): void; deleteStatesByFilter(correlationId: string, orgId: string, filter: FilterParams, callback: (err: any) => void): void; deleteStateById(correlationId: string, orgId: string, id: string, callback: (err: any, state: CurrentObjectStateV1) => void): void; }