import type { HTMLAttributes, ReactNode } from 'react';
export interface ChatContextTagProps extends Omit, 'children'> {
label: ReactNode;
icon?: ReactNode;
onRemove?: () => void;
removeLabel?: string;
}
export declare const ChatContextTag: import("react").ForwardRefExoticComponent>;