import { SubProtocolType } from '../../../types/sub-protocol'; import { _AnyProtocol } from '../../protocol'; export declare type SubProtocolExtension<_T extends _AnyProtocol> = SubProtocol; export interface SubProtocol { getType(): Promise; mainProtocol(): Promise; }