import { User } from './user.entity';
import { WorkflowConfiguration } from './workflow-configuration.entity';
import { WorkflowVariableMaster } from './workflow-variable-master.entity';
export declare class WorkflowConfigurationVariable {
    id: number;
    workflowConfigId: number;
    workflowConfiguration: WorkflowConfiguration;
    variableMasterId: number;
    variableMaster: WorkflowVariableMaster;
    isRequired: boolean;
    variableOrder: number | null;
    overrideAlias: string | null;
    overrideDefaultValue: string | null;
    metadata: Record<string, unknown> | null;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date | null;
    createdById: number | null;
    updatedById: number | null;
    createdBy: User | null;
    updatedBy: User | null;
    constructor(partial: Partial<WorkflowConfigurationVariable>);
}
