export declare function useArrowKeyHistory(onSetInput: (value: string, mode: "bash" | "prompt") => void, currentInput: string): { historyIndex: number; setHistoryIndex: import("react").Dispatch>; onHistoryUp: () => void; onHistoryDown: () => void; resetHistory: () => void; };