import type { MojoApp } from '../types.js';
/**
 * Eval command.
 */
declare function evalCommand(app: MojoApp, args: string[]): Promise<void>;
declare namespace evalCommand {
    var description: string;
    var usage: string;
}
export default evalCommand;
