import { OnProgress } from '../../types/on-progress'; declare type PathInput = { path: string; }; declare type HashInput = { sha256: string; }; export declare type Input = (PathInput | HashInput) & { onProgress: OnProgress; }; export {};