import { Description } from "./Description";
import { WebFieldTypeDescription } from "./WebFieldTypeDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebEntityTypeDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private l;
    get fields(): WebFieldTypeDescription[];
    set fields(a: WebFieldTypeDescription[]);
    private k;
    get childEntities(): WebEntityTypeDescription[];
    set childEntities(a: WebEntityTypeDescription[]);
}
