import type { Effect } from './store.types'; /** * Combines multiple effects into one, merging all of their observables. * * @param effects The effects to combine. * @return The combined effect. */ export declare const combineEffects: (...effects: Effect[]) => Effect;