export declare class Flag<D = any> {
    data?: D;
    private state;
    set(): this;
    get isSet(): boolean;
    constructor(data?: D);
}
