import { IConfig, NodeConfig } from '@subql/node-core'; export interface ISubstrateConfig extends IConfig { skipTransactions: boolean; } export declare class SubstrateNodeConfig extends NodeConfig { /** * This is a wrapper around the core NodeConfig to get additional properties that are provided through args or node runner options * NOTE: This isn't injected anywhere so you need to wrap the injected node config * * @example * constructor( * nodeConfig: NodeConfig, * ) { * this.nodeConfig = new SubstrateNodeConfig(nodeConfig); * } * */ constructor(config: NodeConfig); get skipTransactions(): boolean; }