import React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; export declare const isMarkdownAvailable: boolean; export interface MarkdownMessageTextProps { text: string; isStreaming?: boolean; /** Base text style (color/size) derived from the theme. */ textStyle?: StyleProp; containerStyle?: StyleProp; /** Escape hatch: extra props forwarded to the Streamdown component (theming, rules, etc.). */ componentProps?: Record; } /** * Renders message text as markdown via react-native-streamdown. Only used when * the package is installed and markdown is enabled; otherwise MessageText falls * back to its plain-text LinkParser path. */ export declare const MarkdownMessageText: ({ text, isStreaming, textStyle, containerStyle, componentProps, }: MarkdownMessageTextProps) => React.JSX.Element | null; //# sourceMappingURL=MarkdownMessageText.d.ts.map