/// export interface SoftwarePayload { value: string; } export declare class SoftwareAttribute { private value; static createBlank(): SoftwareAttribute; constructor(value: string); readonly type: number; readonly payload: SoftwarePayload; toBuffer(): Buffer; loadBuffer($attr: Buffer): boolean; }