import type { BotConfig } 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: BotConfig, patch: Partial, options?: MergeSectionOptions): BotConfig;