import type { ItemProps, AutoCompleteListRootProps } from './AutoCompleteList.types'; /** * 자동완성 목록을 표시하는 컴포넌트입니다. * * @module AutoCompleteList * @property {Component} Root - 자동완성 목록의 컨테이너 컴포넌트입니다. 스크롤 가능한 목록과 인덱스 바를 포함합니다. * @property {Component} Item - 자동완성 목록의 개별 항목을 표시하는 컴포넌트입니다. 텍스트, 아이콘, 카운트 등을 표시할 수 있습니다. * @property {Component} Divider - 자동완성 목록의 항목들을 구분하는 구분선 컴포넌트입니다. * @example * ```tsx * * * * * * ``` */ declare const AutoCompleteList: { Root: ({ children, className, hasIndexBar, onIndexClick, ...rest }: AutoCompleteListRootProps) => import("react/jsx-runtime").JSX.Element; Item: ({ text, count, leadingIcon, iconUrl, isInputItem, isFocused, inputValue, className, ...rest }: ItemProps) => import("react/jsx-runtime").JSX.Element; Divider: () => import("react/jsx-runtime").JSX.Element; }; export { AutoCompleteList };