import type { ChipProps as MaterialChipProps } from "@mui/material/Chip"; import type { ReactNode } from "react"; type ChipStyleProps = { backgroundColor?: string; labelColor?: string; markAsRemoved?: boolean; borderColor?: string; fullWidth?: boolean; noMargin?: boolean; accessibilityRole?: string; backgroundColorOnHover?: string; tooltipContent?: ReactNode; opacity?: number; }; type ExposedMaterialChipProps = Pick; type ChipProps = ChipStyleProps & ExposedMaterialChipProps; export declare function Chip(props: ChipProps): import("react/jsx-runtime").JSX.Element; export {};