///
import { CreateReadStreamOptions, SourceDestination } from './source-destination';
export declare class SingleUseStreamSource extends SourceDestination {
private stream;
private used;
constructor(stream: NodeJS.ReadableStream);
canCreateReadStream(): Promise;
createReadStream({ start, end, }?: CreateReadStreamOptions): Promise;
}