import { default as React } from 'react'; import { HelpType } from '../../../core'; interface HelpByCategory { guid: string; icon: string; title: string; topics: Topic[]; } interface HelpByCategoryListProps { helpByCategory: HelpByCategory[]; onClick: (label: string, type: HelpType) => void; } interface Topic { label: string; type: HelpType; } export declare const HelpByCategoryList: React.FC; export {};