import { ReactNode } from 'react'; interface InputContextValue { getCommandInput: () => string; setCommandInput: (value: string) => void; renderCommandInput: (callback?: () => void) => void; commandInputVersion: number; } export declare function InputProvider({ children }: { children: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useInputContext(): InputContextValue; export {}; //# sourceMappingURL=InputContext.d.ts.map