import type { IPaintAttributes } from "../types/warpaints";
export default class PaintAttribute {
    protected readonly id: number;
    protected readonly name: string;
    constructor(options?: Partial<IPaintAttributes>);
    isValid(): boolean;
    getId(): number;
    getName(): string;
}
