import { Node } from './Node';
export interface NodeIdOptions {
    id?: string;
    node?: Node;
}
