/**
 * @author WMXPY
 * @namespace Util_Node
 * @description Context
 */
export declare class LimitCounter {
    private _count;
    private _limit;
    constructor(limit: number);
    add(): LimitCounter;
    amount(): number;
    addAndCheck(): boolean;
    check(): boolean;
    reset(): LimitCounter;
}
