interface Command { description: string; bootstrap: boolean; run: (args?: string[]) => Promise; } declare const commands: Record; export default commands;