import { SQLDataTypes } from '../utils/schemaDefintions'; declare const globalAccounts: (string | { accountId: { type: SQLDataTypes; allowNull: boolean; unique: string; }; cycleNumber: { type: SQLDataTypes; allowNull: boolean; unique: string; }; data: { type: SQLDataTypes; allowNull: boolean; }; timestamp: { type: SQLDataTypes; allowNull: boolean; }; hash: { type: SQLDataTypes; allowNull: boolean; }; })[]; export default globalAccounts;