import React from "react"; interface IAutoComplete { children?: React.ReactNode; visible?: boolean; items: T[]; onRowClick?: (e: T, index: number) => void; height?: string | number; width?: string | number; scrolledToBottom?: () => void; loading?: boolean; type?: "primary" | "default"; displayExpr: keyof T; } export declare function AutoComplete(props: IAutoComplete): JSX.Element; export {};