import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface IngredientsProps {
    config: ScreenConfig;
    modalContentConfig: ScreenConfig;
    handlers: Handlers;
    title: string;
    subtitle?: string;
    ingredients: string;
}
declare const Ingredients: ({ config, handlers, title, subtitle, ingredients }: IngredientsProps) => React.JSX.Element;
export default Ingredients;
