import { ActualParameter } from './actual-parameter'; export declare class BizComponentEntity { constructor(name?: string, metadataid?: string, method?: string); id: string; name: string; flowFormKey?: string; bizActivityId?: string; componentLocation?: ComponentLocation; executionTime: string; metadataId: string; methodCode: string; methodName?: string; actualParameters: Array; owner: string; ownerType: OwnerType; isForCompensation?: boolean; condition?: string; scopeType?: string; } export declare enum ComponentLocation { Process = 0, Activity = 1 } export declare enum OwnerType { Process = "Process", Activity = "Activity", Schema = "Schema" }