UNPKG

react-native-gifted-chat

Version:
17 lines 709 B
import React from 'react'; import { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native'; import { ReplyMessage } from '../Models'; export interface ReplyPreviewProps { /** The reply message to preview */ replyMessage: ReplyMessage; /** Callback to clear the reply */ onClearReply?: () => void; /** Container style */ containerStyle?: StyleProp<ViewStyle>; /** Text style */ textStyle?: StyleProp<TextStyle>; /** Image style */ imageStyle?: StyleProp<ImageStyle>; } export declare function ReplyPreview({ replyMessage, onClearReply, containerStyle, textStyle, imageStyle, }: ReplyPreviewProps): React.JSX.Element; //# sourceMappingURL=ReplyPreview.d.ts.map