import type { ReplCommand, ReplCommandInformation } from './repl-main';
/**
 * Tries to execute the given R shell command.
 * If not allowed, an error message is printed to the output.
 */
export declare function tryExecuteRShellCommand({ output, analyzer, allowRSessionAccess, remainingLine }: ReplCommandInformation): Promise<void>;
export declare const executeCommand: ReplCommand;
