import { CSSProperties } from 'react'; interface PopularTopicsRowProps { name: string; guid?: string; subtitle?: string; onClick: () => void; sx?: CSSProperties; } export declare const PopularTopicsRow: React.FC; export {};