import * as React from 'react'; type ISettingsEditorEnhancedProps = { input: { master: any; }; preferences: any; activeTarget: number; commonlyUsed: any; folders: any[]; menuData: any; switchSettings: Function; getConfigurationTarget: Function; getLabel: Function; checkExist: Function; insertNewContent: Function; RemoveExist: Function; getFileContent: Function; saveFile: Function; showContextMenu: Function; }; export declare const SettingsEditorEnhanced: (props: ISettingsEditorEnhancedProps) => React.JSX.Element; export {};