import { AccumulateConfig } from '../../types/hmsh_escalations'; type Foldable = { batch?: string[]; partialOnTimeout?: boolean; accumulate?: AccumulateConfig; metadata?: Record; envelope?: Record; }; /** * Folds whichever accumulator declaration a creation config carries * (`batch` or `accumulate`) into its storage shape, and passes every other * config through untouched. The single entry point for both the * `condition()` path and standalone `create()`. */ export declare function foldEscalationConfig(config: T): Omit; export {};