/// import type { EC3ReportConfigurationLabel, ODataTable } from "@itwin/insights-client"; import type { Configuration } from "../ec3-widget-react"; import "./AssemblyItem.scss"; export interface AssemblyItemProps { assembly: EC3ReportConfigurationLabel; currentAssemblyIndex: number; template: Configuration; isLoading: boolean; editableAssemblyIndex?: number; oDataTable?: ODataTable[]; reportTables?: string[]; allAssemblies: EC3ReportConfigurationLabel[]; onAssemblyDataChange: (updatedAssembly: EC3ReportConfigurationLabel, index: number, action?: "add" | "delete") => void; setTemplate: (template: Configuration) => void; } export declare const AssemblyItem: (props: AssemblyItemProps) => JSX.Element; //# sourceMappingURL=AssemblyItem.d.ts.map