export interface Item {
    id: string;
    name: string;
    disabled?: boolean;
    [key: string]: any;
}
declare const GetPopoverContent: (data: Item[] | Item) => string;
export default GetPopoverContent;
