import React from 'react'; import type { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { ScreenProps } from '../types'; export interface RecipeBlockProps extends ScreenProps { items: any; thumbnail: any; imageStyle?: StyleProp; textStyle?: StyleProp; containerStyle?: StyleProp; } export declare const RecipeBlock: React.FC;