import { KeybindingsManager, type KeybindingsConfig } from '@earendil-works/pi-tui'; export declare function getTuiKeybindingsPath(): string; export declare function loadTuiKeybindingsConfig(path?: string): KeybindingsConfig; export declare class XopcKeybindingsManager extends KeybindingsManager { private readonly configPath; constructor(userBindings?: KeybindingsConfig, configPath?: string); reload(): void; getConfigPath(): string; } export declare function createXopcTuiKeybindingsManager(): XopcKeybindingsManager;