import IPostMessage from '../IPostMessage'; import Mdc from './MDC/Mdc'; import Nmc from './NMC/Nmc'; /** * The `sos.native` API groups together methods for controlling the device using native commands. */ export default class NativeCommands { private messagePrefix; private postMessage; static MESSAGE_PREFIX: string; readonly mdc: Mdc; readonly nmc: Nmc; /** @internal */ constructor(messagePrefix: string, postMessage: IPostMessage); private getMessagePrefix; }