import * as React from 'react'; type IPreferencesLayoutProps = { settingsTree: any; preferences: any; input: any; getLabel: Function; checkExist: Function; insertNewContent: Function; RemoveExist: Function; saveFile: Function; getFileContent: Function; showContextMenu: Function; }; export declare const SettingsLayout: (props: IPreferencesLayoutProps) => React.JSX.Element; export {};