import type { AssetsFinder } from "../../helpers";
import type { IEnkaAccountBuildData, TLanguage } from "../../types";
import { Character } from "../index";
export declare class FetchEnkaHoyoBuilds {
    id: number;
    name: string;
    avatarId: number;
    hoyo_type: number;
    public: boolean;
    settings: unknown;
    order: number;
    avatar: Character;
    live: boolean;
    image: string | null;
    constructor(assets: AssetsFinder, language: TLanguage, data: IEnkaAccountBuildData);
}
