import { DappDemoType, AddOnsType, UiFrameworkType } from "../schema"; export interface IDEMO { deps: { [key: string]: string; }; devDeps: { [key: string]: string; }; scripts: { [key: string]: string; }; templates_root: Array<{ source: string; target: string; }>; templates_src: Array<{ source: string; target: string; }>; } export interface IDEMO_APP extends IDEMO { addOns: Array; } export interface IDEMO_SERVICE extends IDEMO { } export declare const configuration_options: { initial: IDEMO_APP; dappDemoCommon: IDEMO_APP; dappDemos: { [key in DappDemoType]: IDEMO_APP; }; addOns: { [key in AddOnsType]: IDEMO_SERVICE; }; uiFramework: { [key in UiFrameworkType]: IDEMO_SERVICE; }; };