import type { PackProperties } from './index'; export interface PackToFsProperties extends PackProperties { input: string | Iterable | AsyncIterable; output?: string; } export declare function packToFs({ input, output, blockstore: userBlockstore, hasher, maxChunkSize, maxChildrenPerNode, wrapWithDirectory, rawLeaves, customStreamSink }: PackToFsProperties): Promise<{ root: any; filename: string; }>;