import { type ReactNode } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Content * @public */ export interface ChipContentProps extends StylingProps, DataTestId { /** Elements to be displayed in the prefix or suffix slot. */ children: ReactNode; } /** * ChipContent component, used for adding elements to the prefix/suffix slot. * @public */ export declare const ChipContent: (props: ChipContentProps & { $isPrefixWithKey?: boolean; } & import("react").RefAttributes) => React.ReactElement | null; /** * Component used for adding elements to the prefix slot. * @public * */ export declare const ChipPrefix: (props: ChipContentProps & import("react").RefAttributes) => React.ReactElement | null; /** * Component used for adding elements to the suffix slot. * @public */ export declare const ChipSuffix: (props: ChipContentProps & import("react").RefAttributes) => React.ReactElement | null;