import { NativeModule } from "expo"; declare class ExpoSpellcheckerModule extends NativeModule { checkSpelling(word: string, language: string): Promise; getCompletions(sentence: string, language: string): Promise; ignoreWord(word: string): Promise; getIgnoredWords(): Promise; learnWord(word: string): Promise; unlearnWord(word: string): Promise; hasLearnedWord(word: string): Promise; getAvailableLanguages(): Promise; } declare const _default: ExpoSpellcheckerModule; export default _default; //# sourceMappingURL=ExpoSpellcheckerModule.d.ts.map