import { type 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. * @internal */ export declare const BaseChip: ((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").WithChildren & import("@dynatrace/strato-components/core").StylingProps & import("@dynatrace/strato-components/core").DataTestId & import("react").RefAttributes) => React.ReactElement | null; DeleteButton: (props: import("./ChipDeleteButton.js").ChipDeleteButtonProps & import("react").RefAttributes) => React.ReactElement | null; };