/** * Merges multiple partial option objects into one. * * - Plain objects are deep-merged so that later configs can override * individual nested fields without wiping unrelated ones. * - Functions sharing the same key are composed: all are called in * order (earliest config first) with the same arguments. * - All other values are shallow-merged (last value wins). */ export declare function mergeOptions>(...configs: Array>): T; //# sourceMappingURL=mergeOptions.d.ts.map