/// import { RawData, RemoteData } from './RemoteData'; export declare class Sha256RemoteData extends RemoteData { private readonly hash; private readonly path; protected constructor(uri: string, hash: Buffer, path: string); static from(uri: string): Sha256RemoteData | undefined; static validate(uri: string): boolean; get(): Promise; getRaw(): Promise; }