react-native-gifted-chat
Version:
The most complete chat UI for React Native
14 lines • 683 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle, TextStyle } from 'react-native';
import { ReplyMessage } from './Models';
export interface ReplyPreviewProps {
replyMessage: ReplyMessage;
onClearReply: () => void;
containerStyle?: StyleProp<ViewStyle>;
usernameStyle?: StyleProp<TextStyle>;
textStyle?: StyleProp<TextStyle>;
clearButtonStyle?: StyleProp<ViewStyle>;
clearButtonTextStyle?: StyleProp<TextStyle>;
}
export declare function ReplyPreview({ replyMessage, onClearReply, containerStyle, usernameStyle, textStyle, clearButtonStyle, clearButtonTextStyle, }: ReplyPreviewProps): React.JSX.Element;
//# sourceMappingURL=ReplyPreview.d.ts.map