import { SshHost } from "../SshHost.js";
export interface ReleaseMeta {
    [key: string]: string;
}
export declare const unknownDistro = "unknown";
export interface OsRelease {
    distroName: string;
    distroVersion: string;
    meta: ReleaseMeta;
}
export declare const defaultOsRelease: OsRelease;
export declare function fetchOsRelease(sshHost: SshHost): Promise<OsRelease>;
//# sourceMappingURL=OsRelease.d.ts.map