import { default as React } from 'react'; interface Props { chips: string[]; error: boolean; inputValue: string; placeholder: string; childrenwidth?: number; disableInputWithChips?: boolean; helpText?: string; onAdd: (chip: string) => void; onDelete: (index: number) => void; onDeleteAll: () => void; onUpdateInput: (event: React.ChangeEvent) => void; onInvalidEmailAdd?: (chip?: string) => void; } export default function EmailInput(props: Props): import("react/jsx-runtime").JSX.Element; export {};