import { EffectConfig } from './effect-config';
import { Dependencies } from './effect';
export declare type StateWithEffect<TState, TDeps extends Dependencies, TResult> = readonly [
    state: TState,
    ...effect: EffectConfig<TDeps, TResult>[]
];
