import { DB } from '../core/db/db'; import { SpockConfig } from '../core/config'; import { NetworkState } from '../core/ethereum/getNetworkState'; import { Services } from '../core/types'; export declare const testConfig: SpockConfig; export declare function prepareDB(db: DB, config: SpockConfig): Promise; export declare const dumpDB: (db: DB) => Promise<{ blocks: any[]; transaction: any[]; extracted_logs: any[]; job: any[]; }>; export declare function executeSQL(db: DB, sql: string): Promise; export declare function getSQL(db: DB, sql: string): Promise; export declare const networkState: NetworkState; export declare function servicesFixture(): Promise;