import { Entity } from '../core/entity/core.base.entity'; import { EnvironmentKind } from '../enum/environment.kind'; import { DomainEntity } from './domain.entity'; import { LayerSystemXrefEntity } from './layer.system.xref.entity'; import { LayoutSystemXrefEntity } from './layout.system.xref.entity'; export declare class RouteEntity extends Entity { name: string; path: string; hash: string; segments: number; condition: any; weight: number; isRoot: boolean; redirectId: string; layoutSystemId: string; layerSystemId: string; systemId: string; domainId: string; layoutSystemXref: LayoutSystemXrefEntity; layerSystemXref: LayerSystemXrefEntity; redirectRoute: RouteEntity; domain: DomainEntity; params: Map; aliasId: string; environmentKind: EnvironmentKind; } //# sourceMappingURL=route.entity.d.ts.map