import { ElementType, type ReactElement } from 'react'; import type { ChipProps } from './types/chip.js'; /** * Use the `Chip` component to present a piece of information in a compact form. * @public */ export declare const Chip: ((props: ChipProps) => ReactElement | null) & { Prefix: (props: import("./ChipContent.js").ChipContentProps & import("react").RefAttributes) => React.ReactElement | null; Suffix: (props: import("./ChipContent.js").ChipContentProps & import("react").RefAttributes) => React.ReactElement | null; Key: (props: import("@dynatrace/strato-components/core/index.js").WithChildren & import("@dynatrace/strato-components/core/index.js").StylingProps & import("@dynatrace/strato-components/core/index.js").DataTestId & import("react").RefAttributes) => React.ReactElement | null; DeleteButton: (props: import("./ChipDeleteButton.js").ChipDeleteButtonProps & import("react").RefAttributes) => React.ReactElement | null; };