UNPKG

332 BTypeScriptView Raw
1import * as React from 'react';
2export interface IGiftedChatContext {
3 actionSheet(): {
4 showActionSheetWithOptions: (option?: any, cb?: any) => any;
5 };
6 getLocale(): string;
7}
8export declare const GiftedChatContext: React.Context<IGiftedChatContext>;
9export declare const useChatContext: () => IGiftedChatContext;