import * as React from 'react'; import { type IManifestStoreEntry } from '../../../../stores/ManifestStore'; import type { IDeveloperToolsCompPropBase } from '../../../IDeveloperToolsTab'; export interface IManifestManagerState { manifests: IManifestStoreEntry[]; selectedManifest: IManifestStoreEntry | undefined; } export default class ManifestManager extends React.Component { private static _selectedManifestId; private _selection; constructor(props: IDeveloperToolsCompPropBase); render(): React.ReactElement<{}>; private _getUpdatedState; } //# sourceMappingURL=ManifestManager.d.ts.map