import { ReactElement } from 'react';
import { NavigateFunction } from 'react-router-dom';
import { Overlay } from '../../overlay';
export interface UserSettingsProps {
    dappletName: string;
    registryUrl: string;
    modules?: any[];
    overlays?: Overlay[];
    navigation?: NavigateFunction;
}
export declare const UserSettings: ({ dappletName, registryUrl, modules, overlays, navigation, }: UserSettingsProps) => ReactElement;
