import { FC } from 'react';
import ModuleInfo from '../../../../../background/models/moduleInfo';
import VersionInfo from '../../../../../background/models/versionInfo';
interface PropsDevModule {
    setDappletsDetail: (x: any) => void;
    modules: {
        module: ModuleInfo;
        versions: VersionInfo[];
        isDeployed: boolean[];
    };
    setModuleInfo: (x: any) => void;
    setModuleVersion: (x: any) => void;
    setUnderConstructionDetails: (x: any) => void;
    isLocalhost?: boolean;
    setUpdate?: (x: any) => void;
    setOpenWallet?: () => void;
    connectedDescriptors?: [];
    selectedWallet?: string;
    setCurrentAccount?: (x: any) => void;
    currentAccount?: any;
}
export declare const DevModule: FC<PropsDevModule>;
export {};
