import type { OpenClawConfig } from "./config.js"; import type { WhatsAppConfig } from "./types.js"; export type MergeSectionOptions = { unsetOnUndefined?: Array; }; export declare function mergeConfigSection>(base: T | undefined, patch: Partial, options?: MergeSectionOptions): T; export declare function mergeWhatsAppConfig(cfg: OpenClawConfig, patch: Partial, options?: MergeSectionOptions): OpenClawConfig;