import type { SyntheticEvent } from 'react'; import { ViewStyle } from 'react-native'; declare type EmojiPickerInputProps = { style: ViewStyle; selectedEmoji: String; onEmojiSelected: (event: SyntheticEvent) => void; fontSize?: Number; inputAccessoryViewID?: String; missingEmojiKeyboardTitle?: String; missingEmojiKeyboardBody?: String; missingEmojiKeyboardButton?: String; }; export declare const EmojiPickerInputView: import("react-native").HostComponent | (() => never); export {};