import type { Stream } from 'node:stream'; export declare class Bundle { tarStream: Stream.Readable; deviceType: string; architecture: string; private dockerfileHook; constructor(tarStream: Stream.Readable, deviceType: string, architecture: string, hook?: Bundle['dockerfileHook']); callDockerfileHook(contents: string): Promise>; } export default Bundle;