import type { FlowrConfig } from '../../config';
import type { ReplOutput } from './commands/repl-main';
/** Prefix of an input that is to be re-analyzed whenever the file changes, the counterpart of {@link fileProtocol}. */
export declare const watchProtocol = "watch://";
/** The input to analyze: one that looks like a path gets the {@link fileProtocol}, unless the repl config says not to. */
export declare function handlePathLikeInput(output: ReplOutput, input: string, config: FlowrConfig): string;
