import { IOTAList, SignedTX } from "./IOTAList"; export interface DataSource extends SignedTX { externalURL: string; } export declare class SourceList extends IOTAList { private DataSources; constructor(address: string, provider: string); QuerySourceList(address?: string): Promise; AddDataSource(UUIDIssuer: string, externalURL: string, publicKeyId: string, privateKey: string): Promise; RemoveDataSource(UUIDIssuer: string, publicKeyId: string, privateKey: string): Promise; GetExternalSource(UUID: string): Promise; }