import { Effect, StoreWritable } from 'effector'; export type EffectState = 'initial' | 'pending' | 'done' | 'fail'; export declare function status(effect: Effect): StoreWritable; export declare function status(params: { effect: Effect; defaultValue?: EffectState; }): StoreWritable;