export declare type CommitTypes = 'build' | 'ci' | 'docs' | 'feat' | 'fix' | 'perf' | 'refactor' | 'revert' | 'style' | 'test' | 'wip' | 'chore';
export declare const COMMIT_ASSETS: string[];
export declare const DEFAULT_RELEASE_RULES: ({
    release: any;
    type: CommitTypes;
} | {
    message: string;
    release: string;
})[];
export declare const DEFAULT_ASSETS_FILES: {
    path: string[];
}[];
