import { UFWOperation } from "./enum/ufw-operation.enum";
export declare class UFWRequest {
    private _operation;
    data: string;
    returnJson: boolean;
    get operation(): UFWOperation;
    set operation(op: UFWOperation);
    pass(data: {
        [key: string]: any;
    }): void;
}
export declare function execute<T>(req: UFWRequest): Promise<T>;
