import { PlaceSearchDisplayOptions } from '../../types'; export interface ListItemPoi { title?: string; address?: string; name?: string; addr?: string; /** 扩展信息,含 detail_info 等(地图 API 返回) */ ext?: { [key: string]: unknown; detail_info?: Record; }; /** 行政区等信息(地图 API 返回) */ admin_info?: Record; } export declare function createListRoot(): HTMLUListElement; export declare function createListItem(poi: ListItemPoi, index: number, total: number, display?: PlaceSearchDisplayOptions): HTMLElement; export declare function createEmptyView(message?: string): HTMLElement; export declare function getListEl(root: HTMLElement): HTMLUListElement;