import { PropsWithoutRef, ReactNode } from 'preact/compat'; import { ImporterOutputFieldType } from '../types'; interface Props { value: ImporterOutputFieldType; onBlur?: (value: ImporterOutputFieldType) => void; onChange?: (value: ImporterOutputFieldType) => void; placeholder?: string; iconBuilder?: (props: PropsWithoutRef) => ReactNode; classes?: string; clearable?: boolean; type?: 'text' | 'number'; 'aria-label'?: string; } declare const Input: import('preact').FunctionalComponent & { ref?: import('preact').Ref | undefined; }>; export default Input; //# sourceMappingURL=Input.d.ts.map