import { default as React } from 'react'; import { HelpCopy } from '../../../core'; interface PopularTopicsDrawerProps { copy: HelpCopy; isOpen: boolean; onClick: (title: string) => void; onClose: () => void; topic: string; } export declare const PopularTopicsDrawer: React.FC; export {};