export default class Settings { constructor(base?: Settings); set(key: string, value: unknown): boolean; get(key: string): unknown; unset(key: string): boolean; forEach(callback: (key: string, value: unknown) => void): void; extend(): Settings; import(root: Record): void; dump(): Record; static assert(subject: Settings): Settings; static getDefaultSettings(subfield?: any): Settings | unknown; static getRuntimeSettings(): Settings; static getObjectSettings(subject: unknown, from?: unknown): Settings; static extendRuntimeSettings(): Settings; }