import { PlatformType } from "./platform-type"; export declare class Platform { readonly platformType: PlatformType; readonly platformVersion: string; readonly platformArchitecture?: string | undefined; constructor(platformType: PlatformType, platformVersion: string, platformArchitecture?: string | undefined); toString(): string; static fromString(opaqueString: string): Platform; }