import { InputComponent, Key } from '../../inputComponent'; /** const textA = ' ╭──────╮ ╭──────╮ ' const textB = `╭───┤ tap1 ├───╮──╮──╮ ${d} │ Code │ ╭─ ${o} | tab2 | ${q} ──────╮` const textC = '┴───┘ └───┴──┴──┴─ ──────┘ └─ ' */ interface TabsProps { tabs: string[]; onChange: (data: { index: number; tabs: string; }) => void; } export declare class Tabs extends InputComponent { private _index; onKeyPress(str: string, key: Key): void; updateTabs(): void; printTabs(): string; start(): void; } export {};