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