/** * Config values as whole trees: merging two trees into one view, and * splitting one tree into the settings file and the state file by key. * Pure transforms shared by the persistent store and the legacy migration. */ /** Whether a key holds auth state rather than a setting. */ export declare const isStateKey: (key: string) => boolean; export declare const mergeConfig: (baseConfig: Record, overrideConfig: Record) => Record; export declare const splitConfig: (config: Record) => { settings: Record; state: Record; };