UNPKG

react-native-gifted-chat

Version:
10 lines (9 loc) 444 B
import { ActionSheetOptions } from '@expo/react-native-action-sheet'; export interface IGiftedChatContext { actionSheet(): { showActionSheetWithOptions: (options: ActionSheetOptions, callback: (buttonIndex?: number) => void | Promise<void>) => void; }; getLocale(): string; } export declare const GiftedChatContext: import("react").Context<IGiftedChatContext>; export declare const useChatContext: () => IGiftedChatContext;