import type { IConnection } from '../connection';
import type { IConnectionRef } from '../events.generated';
/**
 * Convert an IConnectionRef to IConnection, validating that it implements the full interface
 * @internal
 */
export declare function toIConnection(connection: IConnectionRef): IConnection;
