import { Selector } from "../../../../mdk-core/src";
import { BossbarOption, ValueType } from 'mdk-nbt';
import Execute from "./Execute";
export default class StoreLogic {
    #private;
    constructor(context: Execute);
    score(scoreName: string, selector?: string): Execute;
    block(path: string, axis?: string, value?: ValueType, rate?: number): Execute;
    entity(path: string, selector?: string, value?: ValueType, rate?: number): Execute;
    bossbar(id: string, option?: BossbarOption): Execute;
    storage(target: Selector, path: string, type: ValueType, scale?: number): Execute;
}
