import { type CommandSpec } from '../commands/spec.js'; /** * Render the help guide for a command path, or `null` when no command or * group goes by that path. * * An empty path is the guide for `seam` itself. */ export declare const renderHelp: (path: string[], spec: CommandSpec) => string | null;