import type { KlawConfig } from "../../config/types.klaw.js"; export declare function setAccountEnabledInConfigSection(params: { cfg: KlawConfig; sectionKey: string; accountId: string; enabled: boolean; allowTopLevel?: boolean; }): KlawConfig; export declare function deleteAccountFromConfigSection(params: { cfg: KlawConfig; sectionKey: string; accountId: string; clearBaseFields?: string[]; }): KlawConfig; export declare function clearAccountEntryFields(params: { accounts?: Record; accountId: string; fields: string[]; isValueSet?: (value: unknown) => boolean; markClearedOnFieldPresence?: boolean; }): { nextAccounts?: Record; changed: boolean; cleared: boolean; };