import { BaseModule } from '../base_module'; import { BaseCCCommand } from './base_cc_command'; import { BaseCCMethod } from './base_cc_method'; export declare abstract class BaseInteroperableModule extends BaseModule { crossChainCommand: BaseCCCommand[]; abstract crossChainMethod: BaseCCMethod; }