/**
 * @ignore
 */
declare enum ReleaseChannel {
    STABLE = "stable",
    RELEASE_CANDIDATE = "rc"
}
export default ReleaseChannel;
