export declare const reactionsMap: { readonly '\uD83D\uDE0D': 1; readonly '\uD83D\uDD25': 2; readonly '\uD83E\uDD73': 3; readonly '\uD83E\uDD2F': 4; }; type ReactionTypes = keyof typeof reactionsMap; /** use overloads to be able to use same function with the two different types */ export declare function getReaction(reaction: number): ReactionTypes | undefined; export declare function getReaction(reaction: ReactionTypes): number | undefined; export {};