import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Key. * @public */ export type ChipKeyProps = WithChildren & StylingProps & DataTestId; /** * Component used for adding elements to the key slot. * @public */ export declare const ChipKey: (props: WithChildren & StylingProps & DataTestId & import("react").RefAttributes) => React.ReactElement | null;