import { type HostComponent, type ViewProps } from 'react-native'; import { type DirectEventHandler, type Double } from 'react-native/Libraries/Types/CodegenTypes'; export interface MarkdownViewNativeProps extends ViewProps { customTags?: ReadonlyArray; /** Pre-supplied image metadata: when the renderer encounters a * block-level image whose url matches one of these entries it * reserves the supplied width / height during measurement so * there's no layout shift when the image finishes loading. */ images?: ReadonlyArray>; markdown: string; onImagePress?: DirectEventHandler>; onLinkLongPress?: DirectEventHandler>; onLinkPress?: DirectEventHandler>; onMentionPress?: DirectEventHandler>; onTaskListItemPress?: DirectEventHandler>; styles?: string; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=MarkdownNativeComponent.d.ts.map