import * as React from 'react'; type ISettingsEditorProps = { input: any; activeTarget: number; defaultSettingsTree: any; preferences: any; search: boolean; folders: any; switchSettings: Function; getLabel: Function; checkExist: Function; insertNewContent: Function; RemoveExist: Function; getFileContent: Function; saveFile: Function; showContextMenu: Function; }; export declare const SettingsEditor: (props: ISettingsEditorProps) => React.JSX.Element; export {};