export interface ListItem { label: string; value: string; icon: React.ReactElement; } export interface LayerInfoListProps { label: string; list: ListItem[]; } export declare const LayerInfoList: React.FC;