import { Minehut } from '../Minehut'; import { IconResponse } from "./IconResponse"; /** * Represents a Minehut Icon */ export declare class Icon { client: Minehut; id: string; displayName: string; iconName: string; price: number; salePrice: number | null; rank: string; available: boolean; disabled: boolean; imageUrl: string; createdAt: Date; lastUpdatedAt: Date; raw: IconResponse; constructor(client: Minehut, icon: IconResponse); }