export declare const REWARD_VISIBILITY: { readonly HIDDEN: "hidden"; readonly VISIBLE: "visible"; readonly PROMOTED: "promoted"; }; export type RewardVisibility = (typeof REWARD_VISIBILITY)[keyof typeof REWARD_VISIBILITY]; export declare const defaultRewardVisibility: Record; export declare const visibilityLevelMap: Record;