import { NodeContext } from '../../../poly/NodeContext';
import { TypedNode } from '../../_Base';
export declare class NodeBaseState<NC extends NodeContext> {
    protected node: TypedNode<NC, any>;
    constructor(node: TypedNode<NC, any>);
}
