UNPKG

react-native-gifted-chat

Version:
14 lines 683 B
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