import { Resource } from './resource.entity'; export declare enum ResourceFlowVariableScope { RESOURCE = "resource", GLOBAL = "global" } export type ResourceFlowVariableValueType = 'string' | 'number' | 'boolean' | 'object' | 'array' | 'null'; export declare class ResourceFlowVariable { id: number; scope: ResourceFlowVariableScope; resourceId: number | null; key: string; value: string; valueType: ResourceFlowVariableValueType; createdAt: Date; updatedAt: Date; resource: Resource | null; }