/** The type of release for this version. The two options are "major" and "minor", which will increment the version number accordingly. */ export declare const ReleaseType: { readonly Major: "major"; readonly Minor: "minor"; }; export type ReleaseType = (typeof ReleaseType)[keyof typeof ReleaseType] | string;