/** * Show Command * * Single-reference detail view for comprehensive inspection. */ import type { CslItem } from "../../core/csl-json/types.js"; import { type ExecutionContext } from "../execution-context.js"; export interface ShowCommandOptions { uuid?: boolean; output?: "pretty" | "json" | "yaml" | "bibtex"; json?: boolean; } export declare function executeShow(identifier: string, options: ShowCommandOptions, context: ExecutionContext): Promise; export declare function formatShowOutput(item: CslItem, options: ShowCommandOptions, attachmentsDirectory?: string, allItems?: CslItem[]): string; export declare function handleShowAction(identifier: string | undefined, options: ShowCommandOptions, globalOpts: Record): Promise; //# sourceMappingURL=show.d.ts.map