import { AnyParameter } from './entity-parameter';
import { Process } from './process';
import { Comment } from './comment';
import { EntityMetadata } from './entity-metadata';
export declare class EntityBase {
    id: number;
    fixedId: string;
    isDisplayDescription: boolean;
    iconName: string;
    gisId: string;
    cssClasses: string;
    color: string;
    pluralEntitiesDescription: string;
    orderBy: number;
    comments: Comment[];
    presentationEntityId: number;
    superRange: boolean;
}
export declare class Entity extends EntityBase {
    entityMetadata: EntityMetadata;
    parameters: AnyParameter[];
    processes: Process[];
}
