import type { BeachballOptions, ParsedOptions } from '../types/BeachballOptions'; import type { BasicCommandContext, CommandContext } from '../types/CommandContext'; import type { PackageInfos } from '../types/PackageInfo'; /** * Create a command context for temporary compatibility with private API usage that * may not provide it. (Usually now the context is generated during `validate()`.) * This skips `changeSet` for commands that don't need it. */ export declare function createBasicCommandContext(options: ParsedOptions): BasicCommandContext; /** @deprecated Only to support other deprecated scenarios */ export declare function createBasicCommandContext(options: BeachballOptions, originalPackageInfos?: PackageInfos): BasicCommandContext; /** * Create a command context for temporary compatibility with private API usage that * may not provide it. (Usually now the context is generated during `validate()`.) * Does not populate `bumpInfo`. */ export declare function createCommandContext(options: ParsedOptions): CommandContext; /** @deprecated Only to support other deprecated scenarios */ export declare function createCommandContext(options: BeachballOptions, originalPackageInfos?: PackageInfos): CommandContext; //# sourceMappingURL=createCommandContext.d.ts.map