///
import { Writable } from 'stream';
import type { PackProperties } from './index';
export interface PackToStreamProperties extends PackProperties {
input: string | Iterable | AsyncIterable;
writable: Writable;
}
export declare function packToStream({ input, writable, blockstore: userBlockstore, hasher, maxChunkSize, maxChildrenPerNode, wrapWithDirectory, rawLeaves, customStreamSink }: PackToStreamProperties): Promise<{
root: any;
}>;