import { Description } from "./Description";
import { WebExpressionTreeOrFilteringExpressionDescription } from "./WebExpressionTreeOrFilteringExpressionDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebExpressionTreeDetailDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private static __marshalByValue;
    private static __marshalByValueAlias;
    constructor();
    private k;
    get filteringOperands(): WebExpressionTreeOrFilteringExpressionDescription[];
    set filteringOperands(a: WebExpressionTreeOrFilteringExpressionDescription[]);
    private s;
    get operator(): string;
    set operator(a: string);
    private r;
    get fieldName(): string;
    set fieldName(a: string);
    private q;
    get entity(): string;
    set entity(a: string);
    private l;
    get returnFields(): string[];
    set returnFields(a: string[]);
}
