import React from 'react'; import './style.scss'; import type { AutocompleteSearch, ITextInputProps } from '@adam-sv/arc'; export type MultitextItem = string; export interface IMultitextInputProps extends ITextInputProps { items?: MultitextItem[]; itemsDidUpdate?: (items: MultitextItem[]) => unknown; autocompleteSearch?: AutocompleteSearch; alwaysShowDelete?: boolean; listLabel?: string; delineator?: string; onChange?: (value: string | number, e: React.ChangeEvent | undefined) => unknown; } export declare const getAutcompleteListItem: (autocompleteEntry: string) => import("react/jsx-runtime").JSX.Element; export declare const MultitextInput: (props: IMultitextInputProps) => import("react/jsx-runtime").JSX.Element;