import { ISpecification } from "../api"; import { INode } from "./node"; export declare class Specification { raw: ISpecification; constructor(spec: ISpecification); /** * Initializes the default specification attributes to the node * * @param node the node which will be initialized * @param className the className which is set to the node */ initNode(node: INode, className?: string): INode; }