import type { ComponentPropsWithRef, ElementType } from 'react'; export type ChipProperties = { /** Chip Size */ chipSize?: 'compact'; /** Chip Type */ chipType?: 'selection'; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Compact elements used to filter content or display user input. * @docs {@link https://design.visa.com/components/chips/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Chip: { ({ className, chipType, chipSize, tag: Tag, ...remainingProps }: ChipProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Chip;