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