import STWItem from './STWItem';
import type { STWProfileItemData } from '../../../resources/httpResponses';
import type Client from '../../Client';
/**
 * Represents a Save The World profile's team perk
 */
declare class STWTeamPerk extends STWItem {
    /**
     * The team perk's ID
     */
    teamPerkId: string;
    /**
     * @param client The main client
     * @param id The item ID
     * @param data The team perk data
     */
    constructor(client: Client, id: string, data: STWProfileItemData);
}
export default STWTeamPerk;
