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
18 lines (17 loc) • 665 B
TypeScript
import { ImageStyle, StyleProp } from 'react-native';
import React from 'react';
import { FontStyleInterface, ImageType } from '../../shared/base';
import { CometChat } from '@cometchat-pro/react-native-chat';
export interface ImageModerationFilterInterface {
message?: CometChat.BaseMessage;
ChildView: any;
warningText?: string;
style?: {
warningTextStyle?: FontStyleInterface;
warningImageStyle?: StyleProp<ImageStyle>;
warningImageTint?: string;
filterColor?: string;
};
warningImage?: ImageType;
}
export declare const ImageModerationFilter: (props: ImageModerationFilterInterface) => React.JSX.Element;