import type { CommandFn, CommandUsage } from '../index.ts'; export type VersionOptions = { prereleaseId?: string; commit?: boolean; tag?: boolean; message?: string; tagMessage?: string; includeNameInCommit?: boolean; includeNameInTag?: boolean; }; export type CommandResultSingle = { name: string; oldVersion: string; newVersion: string; dir: string; committed?: string[]; tag?: string; }; export type CommandResult = CommandResultSingle | CommandResultSingle[]; export declare const usage: CommandUsage; export declare const views: { readonly json: (result: CommandResult) => CommandResult; readonly human: (results: CommandResult) => string; }; export declare const command: CommandFn;