import { FC } from 'react';
export interface DeveloperProps {
    setDappletsDetail: (x: any) => void;
    setModuleInfo: any;
    setModuleVersion: any;
    setUnderConstruction: (x: any) => void;
    setUnderConstructionDetails: (x: any) => void;
    isShowChildrenRegistry: boolean;
    setShowChildrenRegistry: (x: any) => void;
    setOpenWallet: () => void;
    connectedDescriptors: [];
    selectedWallet: string;
    initModules: () => void;
}
export declare const Developer: FC<DeveloperProps>;
