import type { CodecType, Transport } from '@novasamatech/host-api'; import { HostInfo, HostPlatform, ProductContext } from '@novasamatech/host-api'; export type HostPlatform = CodecType; export type HostInfo = CodecType; export type ProductContext = CodecType; export declare const createSystem: (transport?: Transport) => { info(): Promise; getProductContext(): Promise; }; export declare const hostSystem: { info(): Promise; getProductContext(): Promise; };