import { OnInit } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; import { DataFlowModule, DataFlowModulePack, LCUElementContext } from '@lcu/common'; import { LazyElementConfig } from '@lowcodeunit/lazy-element'; export declare class DialogModuleConfigureSettings { Pack: DataFlowModulePack; Module: DataFlowModule; } export declare class DialogModuleConfigureComponent implements OnInit { protected dialogRef: MatDialogRef; protected data: DialogModuleConfigureSettings; Connections: Array; Config: LazyElementConfig; Context: LCUElementContext; Module: DataFlowModule; ShowConnections: boolean; constructor(dialogRef: MatDialogRef, data: DialogModuleConfigureSettings); ngOnInit(): void; Cancel(): void; Save(): void; /** * Copy connection string to clipboard * * @param idx index of selected connection string */ CopyToClipboard(idx: number): void; /** * Show connection strings */ protected displayConnections(): void; }