///
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
import type { Action, EmitterProps, Icon, ScreenProps } from '../types';
export interface ShopIngredientsBlockProps extends ScreenProps, EmitterProps {
action: string;
text: string;
icon: Icon;
buttonStyle?: StyleProp;
textStyle?: StyleProp;
containerStyle?: StyleProp;
actions: Action;
}
declare const _default: (props: ShopIngredientsBlockProps) => JSX.Element;
export default _default;