react-native-chating-ui-kit
Version:
CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly
24 lines (23 loc) • 660 B
TypeScript
import React from 'react';
import { ActionSheetStyles } from './ActionSheetStyle';
import { ActionItemInterface } from './ActionItem';
interface CometChatActionSheetInterface {
title: string;
layoutModeIconURL: any;
layoutMode: 'list' | 'grid';
hideLayoutMode: boolean;
actions: ActionItemInterface[];
style: ActionSheetStyles;
}
export declare const CometChatActionSheet: {
(props: CometChatActionSheetInterface): React.JSX.Element;
defaultProps: {
title: any;
layoutModeIconURL: any;
layoutMode: "list";
hideLayoutMode: boolean;
actions: any[];
style: any;
};
};
export {};