import type { ScreenOptions } from '@ewizardjs/blocks-renderer'; export declare function convertScreenCommandsToSettingsView(settings: any, options: ScreenOptions): { targetCLM: { code: any; }; theme: { current: any; }; } | { targetCLM?: undefined; theme: { current: any; }; } | { targetCLM: { code: any; }; theme?: undefined; } | { targetCLM?: undefined; theme?: undefined; }; export declare function parsingBlocksArrayToDictionary(arr: { id: string; iconsPath?: string; }[]): { [key: string]: { iconsPath?: string; id: string; }; };