import { JSX } from 'react'; import { PolymorphicComponentPropWithRef } from '../react-types'; type ChipBaseProps = { href?: Removable; "data-removable"?: boolean; }; export type ChipProps = PolymorphicComponentPropWithRef>; type ChipComponent = (props: ChipProps) => JSX.Element; export declare const Chip: ChipComponent; export {};