import { UseSelectPropGetters } from 'downshift'; import { MarginProps, WidthProps, FlexChildProps } from '../style/helpers'; export interface TagInputListProps { readonly isOpen: boolean; readonly inputValue: string | null; readonly highlightedIndex: number | null; readonly getMenuProps: UseSelectPropGetters['getMenuProps']; readonly getItemProps: UseSelectPropGetters['getItemProps']; } export interface TagData { readonly imageURL?: string; readonly label: string; } export interface TagInputProps extends MarginProps, WidthProps, FlexChildProps { readonly label?: string; readonly description?: string; readonly errorMessage?: string; readonly value: string[]; readonly disabled?: boolean; onChange(value?: string[]): void; } export declare function TagInput({ label, description, errorMessage, value, onChange, ...props }: TagInputProps): JSX.Element; //# sourceMappingURL=tagInput.d.ts.map