import { AsyncState } from '../models'; export declare enum Actions { updateAsyncState = "asyncState.update" } export interface UpdateAsyncState { type: Actions.updateAsyncState; key: Symbol; asyncState: AsyncState; } export declare const updateAsyncState: (key: Symbol, asyncState: AsyncState) => { type: Actions; key: Symbol; asyncState: AsyncState; };