import { Logger } from '@graphprotocol/common-ts'; import { QueryInterface } from 'sequelize'; interface MigrationContext { queryInterface: QueryInterface; logger: Logger; } interface Context { context: MigrationContext; } export declare function up({ context }: Context): Promise; export declare function down({ context }: Context): Promise; export {};