import { AutoDetectedUserInstructions } from "../../types";
import { DockerArchiveManifest, ImageConfig } from "../types";
export { extractArchive } from "./layer";
export declare function getManifestLayers(manifest: DockerArchiveManifest): string[];
export declare function getImageIdFromManifest(manifest: DockerArchiveManifest): string;
export declare function getRootFsLayersFromConfig(imageConfig: ImageConfig): string[];
export declare function getPlatformFromConfig(imageConfig: ImageConfig): string | undefined;
export declare function getDetectedLayersInfoFromConfig(imageConfig: any): AutoDetectedUserInstructions;
export declare function getUserInstructionLayersFromConfig(imageConfig: any): any;
