import { SQLDataTypes } from '../utils/schemaDefintions'; declare const nodes: (string | { id: { type: SQLDataTypes; allowNull: boolean; primaryKey: boolean; }; publicKey: { type: SQLDataTypes; allowNull: boolean; }; curvePublicKey: { type: SQLDataTypes; allowNull: boolean; }; cycleJoined: { type: SQLDataTypes; allowNull: boolean; }; internalIp: { type: SQLDataTypes; allowNull: boolean; }; externalIp: { type: SQLDataTypes; allowNull: boolean; }; internalPort: { type: SQLDataTypes; allowNull: boolean; }; externalPort: { type: SQLDataTypes; allowNull: boolean; }; joinRequestTimestamp: { type: SQLDataTypes; allowNull: boolean; }; activeTimestamp: { type: SQLDataTypes; allowNull: boolean; }; address: { type: SQLDataTypes; allowNull: boolean; }; status: { type: SQLDataTypes; allowNull: boolean; }; })[]; export default nodes;