export declare const getPreferences: () => Promise<Record<string, string>>;
export declare const hasPreference: (key: string) => Promise<boolean>;
export declare const getPreference: (key: string) => Promise<string>;
export declare const setPreference: (key: string, value: string | number) => Promise<void>;