import type { EffectAction } from "../runtime/types"; export interface PartitionResult { foreground: EffectAction[]; background: EffectAction[]; } /** * Partition effect actions into foreground (blocking) and background (async) groups * based on the `schedulerHints.background` flag. */ export declare function partitionByBackground(actions: EffectAction[]): PartitionResult; //# sourceMappingURL=partitioning.d.ts.map