import { DaprClient } from '@dapr/dapr'; declare class VorionSTATE { private daprClient; private serviceStoreName; constructor(daprClient: DaprClient, serviceStoreName: string); addState(key: string, value: T): Promise; getState(key: string): Promise; deleteState(key: string): Promise; updateState(key: string, value: T): Promise; } export default VorionSTATE; //# sourceMappingURL=index.d.ts.map