import { default as React, CSSProperties } from 'react'; import { HelpType } from '../../../core'; export interface ListItem { guid?: string; name: string; subtitle?: string; type?: HelpType; } interface PopularTopicsListProps { sx?: CSSProperties; list: ListItem[]; onClick?: (title: string, type: ListItem['type']) => void; } export declare const PopularTopicsList: React.FC; export {};