import { Workspace } from '@navch/cli-utils'; export declare type Bump = 'major' | 'minor' | 'patch'; export interface Args { bump?: Bump; tags?: string[]; dry?: boolean; canary?: boolean; skipMinify?: boolean; } export interface Context extends Args { ws: Workspace; nextVersion: string; } //# sourceMappingURL=types.d.ts.map