declare const commits: ({
    type: string;
    scope: string;
    release: string;
    group?: undefined;
    hidden?: undefined;
} | {
    type: string;
    release: string;
    group: string;
    scope?: undefined;
    hidden?: undefined;
} | {
    type: string;
    release: boolean;
    group: string;
    scope?: undefined;
    hidden?: undefined;
} | {
    type: string;
    release: boolean;
    hidden: boolean;
    scope?: undefined;
    group?: undefined;
})[];
declare const types: string[];
export { commits, types };
