/// <reference types="react" />
import type { QuickFilterItem } from "../type";
import "../style.scss";
export default function Item({ value, field, placeholder, shadow, inputWidth: propsInputWidth, onChange, columns, disabled, showHighLight: propsShowHighLight }: {
    value: any;
    shadow?: boolean;
    field: QuickFilterItem;
    inputWidth?: number;
    onChange: (key: string, value: any, validatePass: boolean) => void;
    columns?: number;
    placeholder?: string;
    disabled?: boolean;
    showHighLight?: boolean;
}): JSX.Element;
