import type { Readable } from 'stream'; /** * Create a tar archive stream from a directory's contents. * Pure Node implementation — no shell `tar` binary required. */ export declare function createDirectoryTar(dir: string): Readable;