declare module 'react-native-default-preference' { export interface RNDefaultPreferenceKeys { [key: string]: string; } export default class RNDefaultPreference { static get(key: string): Promise; static set(key: string, value: string): Promise; static clear(key: string): Promise; static getMultiple(keys: string[]): Promise; static setMultiple(data: RNDefaultPreferenceKeys): Promise; static clearMultiple(keys: string[]): Promise; static getAll(): Promise; static clearAll(): Promise; static getName(): Promise; static setName(name: string): Promise; } }