import { a as VersionBumpOptions } from '../shared/release-version.I_h_Iaj6.cjs';
import '@142vip/utils';

declare const bumpConfigDefaults: VersionBumpOptions;
declare const CONFIG_DEFAULT_NAME = "bump";
declare const bumpDefaultConfig: {
    commit: boolean;
    push: boolean;
    tag: boolean;
    recursive: boolean;
    skipGitVerify: boolean;
    confirm: boolean;
    ignoreScripts: boolean;
    all: boolean;
};
/**
 * 加载bump默认配置
 */
declare function getBumpDefaultConfig(): {
    commit: boolean;
    push: boolean;
    tag: boolean;
    recursive: boolean;
    skipGitVerify: boolean;
    confirm: boolean;
    ignoreScripts: boolean;
    all: boolean;
};
/**
 * 自定义配置入口
 * - 配置可选
 */
declare function defineBumpXConfig(config: Partial<VersionBumpOptions>): Partial<VersionBumpOptions>;

export { CONFIG_DEFAULT_NAME, bumpConfigDefaults, bumpDefaultConfig, defineBumpXConfig, getBumpDefaultConfig };
