@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
10 lines (9 loc) • 415 B
TypeScript
import { JSX } from "react";
import { ActionSheetStyle } from "../../../theme/type";
import { ActionItemInterface } from "./ActionItem";
import { DeepPartial } from "../../helper/types";
export interface CometChatActionSheetInterface {
actions: ActionItemInterface[];
style?: DeepPartial<ActionSheetStyle>;
}
export declare const CometChatActionSheet: (props: CometChatActionSheetInterface) => JSX.Element;