import React from 'react';
import { Node } from 'reactflow';
interface Children {
    nodes: Node[];
    active: Node | undefined;
}
declare function Tables({ nodes, active }: Children): React.JSX.Element;
export default Tables;
