import { humanReadableOutput, jsonOutput, mermaidOutput } from '@vltpkg/graph'; import type { HumanReadableOutputGraph, JSONOutputGraph, MermaidOutputGraph } from '@vltpkg/graph'; import { MermaidImageView } from '../mermaid-image-view.ts'; import type { CommandFn, CommandUsage } from '../index.ts'; export declare const usage: CommandUsage; export type ListResult = JSONOutputGraph & MermaidOutputGraph & HumanReadableOutputGraph & { queryString: string; }; export declare const views: { readonly json: typeof jsonOutput; readonly mermaid: typeof mermaidOutput; readonly human: typeof humanReadableOutput; readonly count: (result: ListResult) => number; readonly svg: typeof MermaidImageView; readonly png: typeof MermaidImageView; }; export declare const command: CommandFn;