import type React from 'react'; export interface HelpEntry { name: string; description: string; category: string; aliases?: string[] | undefined; argsHint?: string | undefined; } export interface HelpPanelProps { entries: HelpEntry[]; filter: string; selected: number; hint?: string | undefined; } export declare function HelpPanel({ entries, filter, selected, hint, }: HelpPanelProps): React.ReactElement; //# sourceMappingURL=help-panel.d.ts.map