export interface TransposeOptions { hostQemuPath: string; containerQemuPath: string; qemuFileMode?: number; } export declare function transpose(dockerfile: string, options: TransposeOptions): string; export declare function transposeTarStream(tarStream: NodeJS.ReadableStream, options: TransposeOptions, dockerfileName?: string): Promise; export declare function getBuildThroughStream(opts: TransposeOptions): NodeJS.ReadWriteStream;