import { WidthHeight, iconMapping } from './iconConfig'; export type IconMapping = typeof iconMapping; export type IconMappingProps = keyof IconMapping | (string & {}) | undefined; type Size = WidthHeight | number; export type FoodsIconProps = { size: Size; icon: IconMappingProps; placeholder?: "empty" | "blank" | "defaultIcon"; backgroundColor?: string; color?: string; }; export declare const FoodsIcon: (props: FoodsIconProps) => import("react/jsx-runtime").JSX.Element | null; export {};