/// <reference types="node" />
import { SourceDestination } from './source-destination';
export declare class SingleUseStreamSource extends SourceDestination {
    private stream;
    private used;
    constructor(stream: NodeJS.ReadableStream);
    canCreateReadStream(): Promise<boolean>;
    createReadStream(_emitProgress?: boolean, start?: number, end?: number): Promise<NodeJS.ReadableStream>;
}
