import { FunctionComponent } from 'react';
type DataSourceSettingsPropsType = {
    allowAddDataSource?: boolean;
    allowRemoveDataSource?: boolean;
    allowEditDataSource?: boolean;
};
declare const DataSourceSettings: FunctionComponent<DataSourceSettingsPropsType>;
export default DataSourceSettings;
