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; /** Banner mode: replying to a message, or editing one. Default 'reply'. */ mode?: 'reply' | 'edit'; /** Container style */ containerStyle?: StyleProp; /** Text style */ textStyle?: StyleProp; /** Image style */ imageStyle?: StyleProp; } export declare function ReplyPreview({ replyMessage, onClearReply, mode, containerStyle, textStyle, imageStyle, }: ReplyPreviewProps): React.JSX.Element; //# sourceMappingURL=ReplyPreview.d.ts.map