import { ExtendedPropertyItemType, PortalType } from './extendedPropertyDefinition';
export interface PortalItemInfoProperties {
    itemId: string;
    itemType?: ExtendedPropertyItemType;
    portalType: PortalType;
    portalUrl: string;
    tableAlias: string;
    tableName: string;
}
export interface FeatureLayerTableDefinition extends PortalItemInfoProperties {
    layerId: string;
    linkId: string;
    serviceUrl: string;
}
