import * as React from "react"; import type Chip from "@mui/material/Chip"; import type { BaseProps } from "@stratakit/foundations/secret-internals"; type ChipProps = React.ComponentProps; interface MuiChipProps extends BaseProps<"div">, Pick { } declare const MuiChip: React.ForwardRefExoticComponent>; declare const MuiChipLabel: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & React.RefAttributes>; declare const MuiChipDeleteIcon: React.ForwardRefExoticComponent & Omit & import("@mui/material/OverridableComponent").CommonProps & Omit, HTMLButtonElement>, "className" | "color" | "style" | "type" | "tabIndex" | "children" | "render" | "label" | "classes" | "sx" | "component" | "disabled" | "disableFocusRipple" | "loading" | "loadingIndicator" | "size" | "LinkComponent" | "nativeButton" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "edge" | "labelPlacement">, "ref"> & React.RefAttributes>; export { MuiChip, MuiChipDeleteIcon, MuiChipLabel };