import type { AutoCompleteListRootProps } from './AutoCompleteList.types'; export declare const INDEXES: string[]; interface IndexBarProps { onIndexClick?: AutoCompleteListRootProps['onIndexClick']; } export declare const IndexBar: ({ onIndexClick }: IndexBarProps) => import("react/jsx-runtime").JSX.Element; interface IconProps { iconUrl: string; } export declare const Icon: ({ iconUrl }: IconProps) => import("react/jsx-runtime").JSX.Element; interface TextSectionProps { text: string; isInputItem: boolean; inputValue?: string; } export declare const TextSection: ({ text, isInputItem, inputValue, }: TextSectionProps) => import("react/jsx-runtime").JSX.Element; interface CountSectionProps { count?: number; } export declare const CountSection: ({ count }: CountSectionProps) => import("react/jsx-runtime").JSX.Element; export {};