import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface TagCloseProps extends Omit, 'children' | 'color'>, TestableProps {
children?: ReactNode;
ref?: Ref;
}
export declare const TagClose: FC;