import { SsdpType } from './SsdpType'; import { KeyValuePair } from 'dotup-ts-types'; export declare abstract class SsdpDescriptor { readonly name: string; domain: string; location: string; uuid: string; type: SsdpType; header: KeyValuePair[]; abstract getUSN(index: number): string; abstract getNT(index: number): string; constructor(name: string); addHeader(key: string, value: string): void; }