import React from 'react'; import { StyleProp, TextStyle } from 'react-native'; export interface BasicMarkdownProps { text: string; /** Base text style (color/size/weight) inherited by every block. */ textStyle?: StyleProp; /** Position-aware link style (color), forwarded from MessageText. */ linkStyle?: StyleProp; onLinkPress?: (url: string) => void; } export declare const BasicMarkdown: ({ text, textStyle, linkStyle, onLinkPress }: BasicMarkdownProps) => React.JSX.Element; //# sourceMappingURL=BasicMarkdown.d.ts.map