import type { MojoApp } from '../types.js';
/**
 * CGI command.
 */
declare function cgiCommand(app: MojoApp): Promise<void>;
declare namespace cgiCommand {
    var description: string;
    var usage: string;
}
export default cgiCommand;
