import { IngredientsProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Ingredients: ({ title, subtitle, ingredients, close, children }: { title: string; subtitle?: string; ingredients: string; close: () => void; children: (props: IngredientsProps) => ReactNode; }) => ReactNode; export default Ingredients;