import { ButtonProps, TooltipProps } from '@mui/material'; import { IconMapping } from '../Icons'; import { ReactNode } from 'react'; type IconButtonSize = "xs" | "s" | "m"; type AllButtonProps = ButtonProps<"a"> & ButtonProps<"button">; export type FoodsIconButtonProps = { size: IconButtonSize; withBackground?: boolean; icon: keyof IconMapping; buttonProps?: Omit; tooltip?: { text?: ReactNode; props?: Omit; }; }; export declare const FoodsIconButton: (props: FoodsIconButtonProps) => import("react/jsx-runtime").JSX.Element; export {};