import { SQLDataTypes } from '../utils/schemaDefintions'; declare const accountStates: (string | { accountId: { type: SQLDataTypes; allowNull: boolean; unique: string; }; txId: { type: SQLDataTypes; allowNull: boolean; }; txTimestamp: { type: SQLDataTypes; allowNull: boolean; unique: string; }; stateBefore: { type: SQLDataTypes; allowNull: boolean; }; stateAfter: { type: SQLDataTypes; allowNull: boolean; }; })[]; export default accountStates;