import { ContextAbstract, File } from "../../../mdk-core/src";
import { BossbarStyle, BossbarType } from '../function/bossbar';
import { BannerColorKind } from 'mdk-nbt';
export declare class Bossbar extends ContextAbstract {
    constructor(context: File);
    add(id: string, name: string): this;
    list(): this;
    get(id: string, type: BossbarType): this;
    remove(id: string): this;
    setStyle(id: string, style: BossbarStyle): this;
    setValue(id: string, value: number): this;
    setMax(id: string, max: number): this;
    setVisible(id: string, visible: boolean): this;
    setPlayers(id: string): this;
    setColor(id: string, color: BannerColorKind): this;
}
