import { FilterParams, PagingParams, DataPage, ConfigParams } from "pip-services3-commons-nodex"; import { CommandableHttpClient } from "pip-services3-rpc-nodex"; import { CurrentPostStateV1 } from "./CurrentPostStateV1"; import { ICurrentPostStatesClientV1 } from "./ICurrentPostStatesClientV1"; export declare class CurrentPostStatesCommandableClientV1 extends CommandableHttpClient implements ICurrentPostStatesClientV1 { constructor(config?: ConfigParams); getStates(correlationId: string, filter: FilterParams, paging: PagingParams): Promise>; getStateById(correlationId: string, id: string): Promise; setState(correlationId: string, state: CurrentPostStateV1): Promise; setStates(correlationId: string, states: CurrentPostStateV1[]): Promise; deleteStatesByFilter(correlationId: string, filter: FilterParams): Promise; deleteStatesById(correlationId: string, id: string): Promise; }