import { Platform } from '../platform'; import { PlatformConfig, PlatformVersion, Type } from './interface'; /** * @hidden */ export default class PlatformNode { name: string; type: Type; private c; constructor(registry: { [name: string]: PlatformConfig; }, platformName: string); reduceSettings(totalSettings: any): any; settings(): {}; isMatch(p: Platform): boolean; initialize(plt: Platform): void; version(plt: Platform): PlatformVersion | null; }