/** * Priority levels are from lower to higher, so maximum priority is 0 and lower is 5 */ export declare class Priority { static readonly LOWEST_PRIORITY = 5; static readonly HIGHEST_PRIORITY = 0; static readonly COHORT_VALUE = 128; static readonly MAX_VALUE: number; static readonly ALLOW_ALL_THRESHOLD: number; private static readonly DEFAULT_PRIORITY; private readonly _value; constructor(priority?: number, cohort?: number); static default(): Priority; static fromTier(tier: number, cohort?: number): Priority; static fromValue(value: number): Priority; get value(): number; }