export declare type IJob = 'tank' | 'gladiator' | 'marauder' | 'paladin' | 'warrior' | 'darkknight' | 'gunbreaker' | 'healer' | 'conjurer' | 'whitemage' | 'scholar' | 'astrologian' | 'dps' | 'melee' | 'physicalranged' | 'magicalranged' | 'pugilist' | 'lancer' | 'rogue' | 'archer' | 'thaumaturge' | 'arcanist' | 'monk' | 'dragoon' | 'ninja' | 'samurai' | 'bard' | 'machinist' | 'dancer' | 'blackmage' | 'summoner' | 'redmage' | 'bluemage' | 'bluemagetank' | 'bluemagehealer' | 'libero'; /** * @ignore */ export declare const JOB: { [key in IJob]: string; }; /** * @ignore */ export declare const JOB_COLOR: { tank: string; healer: string; dps: string; other: string; }; /**■ * @ignore */ export declare const JOB_TYPE: { [key in IJob]: keyof typeof JOB_COLOR; };