import { SmartPasteCustomInput } from './SmartPasteCustomInput'; import { SmartPasteField } from './SmartPasteField'; export interface SmartPasteOptions { getElement: () => HTMLElement | null; customInputs?: Array; getSmartPasteField?: (field: SmartPasteField) => SmartPasteField | null; setKendoInputValue?: (field: SmartPasteField, value: string) => void; }