/** * Settings helpers for use in scripts. * * Persistent key-value settings stored in the settings SQL table. */ export declare function readSetting(key: string): Promise | null>; export declare function writeSetting(key: string, value: Record): Promise; export declare function removeSetting(key: string): Promise; //# sourceMappingURL=script-helpers.d.ts.map