declare const _default: {
    list: typeof list;
    get: typeof get;
    set: typeof set;
    add: typeof add;
    remove: typeof remove;
    reset: typeof reset;
    enable: typeof enable;
    operation: typeof operation;
};
export default _default;
declare function list(target: string): string;
declare function get(target: string, objective: string): string;
declare function set(target: string, objective: string, score: number): string;
declare function add(target: string, objective: string, amount: string): string;
declare function remove(target: string, objective: string, amount: string): string;
declare function reset(target: string, objective: string): string;
declare function enable(target: string, objective: string): string;
declare function operation(target: string, targetObjective: string, operation: string, source: string, sourceObjective: string): string;
