type Level = 'NONE' | 'IRON' | 'BRONZE' | 'SILVER' | 'GOLD' | 'PLATINUM' | 'DIAMOND' | 'MASTER' | 'GRANDMASTER' | 'CHALLENGER';
export type PercentilesDTO = {
    [key in Level]: number;
};
export {};
//# sourceMappingURL=percentiles.d.ts.map