import type { ReactElement } from "react"; import React from "react"; import { type ChipButtonProps } from "./InternalChipButton"; import { type InternalChipProps } from "./ChipTypes"; import { type AvatarProps } from "../Avatar"; import { type IconProps } from "../Icon"; interface InternalChipAffixProps extends Pick { readonly affix?: ReactElement; } export declare function InternalChipAffix({ affix, active, invalid, disabled, }: InternalChipAffixProps): React.JSX.Element; export {};