/// import { CommonType } from '../common/type'; import { JssStyleType } from './select.type'; export interface ResultInputProps extends Pick { jssStyle?: JssStyleType; value?: string; focus?: boolean; open?: boolean; inputText?: string; filterText?: string; trim?: boolean; values: any; multiple?: boolean; maxLength?: number; onChange: (value: string) => void; onRef: React.MutableRefObject; onBindInput?: (input: HTMLInputElement) => void; onInputBlur?: (text?: string) => void; onClearCreatedData: () => void; convertBr?: string | ((text: string) => string); placeholder?: string; isEmpty?: boolean; classes: { inputMirror: string; inputPlaceholder: string; }; disabled?: boolean; } //# sourceMappingURL=result-input.type.d.ts.map