import type { CommandFn, CommandUsage } from '../index.ts'; export declare const usage: CommandUsage; export type DistTagLsResult = { id: string; tags: Record; }; export type DistTagAddResult = { id: string; tag: string; version: string; }; export type DistTagRmResult = { id: string; tag: string; }; export type CommandResult = DistTagLsResult | DistTagAddResult | DistTagRmResult; export declare const views: { readonly human: (result: CommandResult) => string; readonly json: (r: CommandResult) => CommandResult; }; export declare const command: CommandFn;