import * as React from 'react'; import type { IMarginProps } from '../../enhancers'; import type { BoxOwnProps } from '../Box/types'; export interface ITagInputProps extends IMarginProps, BoxOwnProps> { size?: 'sm' | 'md' | 'lg'; readOnly?: boolean; values: (string | number)[]; uniqueValues?: boolean; onChange?(values: (string | number)[]): void; } export declare const TagInput: React.MemoExoticComponent>>;