import { Campaign } from "../types"; /** * id: The campaign id (required) * type: The type of the achievement * title: A string or an object to be translated. * Note: If the value is a string it is likely used as data in a translation object * * badge: Achievement avatar */ declare const campaigns: Campaign[]; /** * Transform the campaign config into a map. Keeps the config the same * as the others and allows easy access to a campaign by id */ export declare const campaignMap: Map; export default campaigns;