export interface NodeAttributeProps { name: string; value: string; } export declare class NodeAttribute { name: string; value: string; constructor({ name, value }: NodeAttributeProps); }