import { ModuleTypes } from '../../common/constants';
import Base from '../../common/models/base';
import { StorageRef } from '../../common/types';
export default class ModuleInfo extends Base {
    getId: () => string;
    registryUrl: string;
    name: string;
    type: ModuleTypes;
    title: string;
    description: string;
    author: string;
    image?: StorageRef;
    metadata?: StorageRef;
    icon?: StorageRef;
    interfaces: string[];
    contextIds: string[];
    isUnderConstruction: boolean;
}
