export type Rarity = {
    name: string;
    color: string;
    chance: number;
};
export declare const getSortedTokensByRarity: (tokens?: any[], rarities?: Rarity[]) => any[];
