import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * 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) => import("react").ReactElement | null;