import { IRegionAllocation } from './region-allocation'; import { IMultipleRelationOperation } from '../relation'; import { IWorkspaceOutput } from '../workspace/workspace'; export interface IAssetBase { id: string; name: string; description: string; category: string; sector: string; website: string; types: string[]; VPS: string; lookup: string; ISIN: string; } export interface IAsset extends IAssetBase { workspaceId: string; regionAllocationIds: string[]; } export interface IAssetInput extends IAssetBase { workspaceId: string; regionAllocationRelations: IMultipleRelationOperation[]; } export interface IAssetOutput extends IAssetBase { workspace: IWorkspaceOutput; regionAllocations: IRegionAllocation[]; } export declare const assetClasses: string[]; export declare const assetTypes: string[]; export declare const assetCategories: string[]; export declare const regions: string[]; export declare const sectors: string[];