import { EffectConfig } from './effect-config';
export declare const stateWithEffectsBrand = "StateWithEffects";
export declare type StateWithEffects<TState, TEffect> = {
    __brand: typeof stateWithEffectsBrand;
    state: TState;
    effects: EffectConfig<TEffect>[];
};
