export default class SkinPersonaPiece {
    private readonly def;
    private readonly packId;
    private readonly pieceId;
    private readonly pieceType;
    private readonly productId;
    constructor({ def, packId, pieceId, pieceType, productId }: {
        def: boolean;
        packId: string;
        pieceId: string;
        pieceType: string;
        productId: string;
    });
    isDefault(): boolean;
    getPackId(): string;
    getPieceType(): string;
    getProductId(): string;
    getPieceId(): string;
}
//# sourceMappingURL=SkinPersonaPiece.d.ts.map