import { ModuleProptey } from './proptey';
import { ModuleManifest, Application } from '../types';
declare class ModuleState extends ModuleProptey {
    constructor(id: string, model: ModuleManifest, application: Application);
    get sameOrigin(): boolean;
    get level(): number;
    get rel(): 'system' | 'frameworks' | 'module';
    get uri(): string;
    get viewType(): 'portal' | 'iframe' | 'shadow';
}
export { ModuleState };
