import type { ChannelStateConsistencyCheckResultsParams } from './types'; declare class ChannelStateConsistencyCheckResult { readonly missingPeers: string[]; readonly missingProducers: string[]; readonly consumersWithInconsistentState: string[]; readonly producersWithInconsistentState: string[]; readonly peersWithInconsistentAppData: string[]; constructor(params: ChannelStateConsistencyCheckResultsParams); hasInconsistencyCases(): boolean; } export default ChannelStateConsistencyCheckResult;