react-native-ajora
Version:
The most complete AI agent UI for React Native
12 lines (11 loc) • 484 B
TypeScript
import { ActionSheetOptions } from "@expo/react-native-action-sheet";
import { Ajora } from "./hooks/useAjora";
export interface IAjoraContext {
actionSheet(): {
showActionSheetWithOptions: (options: ActionSheetOptions, callback: (buttonIndex?: number) => void | Promise<void>) => void;
};
getLocale(): string;
ajora: Ajora;
}
export declare const AjoraContext: import("react").Context<IAjoraContext>;
export declare const useChatContext: () => IAjoraContext;