import * as React from 'react'; import { BoxProps } from '../Box'; import { Palette, Size } from '../types'; export declare type LocalTagProps = { onRemove?: () => any; palette?: Palette; size?: Size; }; export declare type TagProps = BoxProps & LocalTagProps; export declare const Tag: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };