import { PlaceDetailDisplayOptions } from '../../types'; export declare function closeMask(root: HTMLElement): void; /** 详情展示数据 */ export interface PlaceDetailData { [key: string]: unknown; title?: string; name?: string; address?: string; addr?: string; tel?: string; uid?: string; ext?: { detail_info?: { name?: string; tag?: string; overall_rating?: string; overall_rating_src?: string; price?: string; poi_address?: string; shop_hours?: string; trade_tag?: string; bangdan_head?: { bid_head?: { name?: string; rank_s?: string; }; }; vs_content?: { invisible?: { bigdata?: { photo_album?: Array<{ type?: number; url?: string; icon_url?: string; video_url?: string; label_type?: number; src?: string; vid?: string; imgTagList?: string[]; photo_uploadtime?: string; }>; }; }; }; }; }; } export declare function createEmptyView(): HTMLElement; export declare function renderDetailContent(root: HTMLElement, data: PlaceDetailData, display?: PlaceDetailDisplayOptions): void;