import { Logger } from '@graphprotocol/common-ts'; import { GraphNode, specification } from '@graphprotocol/indexer-common'; import { QueryInterface } from 'sequelize'; interface MigrationContext { queryInterface: QueryInterface; logger: Logger; networkSpecifications: specification.NetworkSpecification[]; graphNode: GraphNode; nodeIds: string[]; } interface Context { context: MigrationContext; } export declare function up({ context }: Context): Promise; export declare function down({ context }: Context): Promise; export {};