import { Terminal, Buffer, ScreenBuffer } from 'terminal-kit'; import { Panel, ScreenPanel, TextPanel } from './panel'; import { Input } from './input'; export declare class CommandPanel extends Panel { keyPanel: ScreenPanel; descriptionPanel: TextPanel; commands: Command[]; constructor(dst: Buffer | Terminal, options: Panel.Options); getScreenBuffer(): ScreenBuffer; render: () => void; setCommands(commands: Command[]): void; } export interface Command { key: string; action: Input.Action; } //# sourceMappingURL=commandpanel.d.ts.map