import React from "react"; import { ChipPrefix } from "./components/ChipPrefix/Chip.Prefix"; import { ChipSuffix } from "./components/ChipSuffix/Chip.Suffix"; import type { ChipProps } from "./Chip.types"; type ChipElement = HTMLButtonElement | HTMLDivElement; export declare const Chip: React.ForwardRefExoticComponent & { readonly "data-testid"?: string; readonly className?: string; readonly style?: React.CSSProperties; } & React.RefAttributes> & { Prefix: typeof ChipPrefix; Suffix: typeof ChipSuffix; }; export {};