import getLinuxInfo from './utils/get-linux-info';
import getWindowsInfo from './utils/get-windows-info';
import getMacInfo from './utils/get-mac-info';
export interface OSInfo {
    name: string;
    version: string;
}
export default function getOSInfo(): Promise<OSInfo | null>;
export { getMacInfo, getWindowsInfo, getLinuxInfo, getOSInfo };