declare const GLIBC = "glibc";
declare const MUSL = "musl";
export type LibcFamily = typeof GLIBC | typeof MUSL;
export type LibcDetails = {
    family: LibcFamily | null;
    version: string | null;
};
export declare function getLibcDetails(): LibcDetails;
export {};
