/** * ConsensusStateResponse type and creator */ import { RoundState } from './round-state'; export interface ConsensusStateResponse { readonly roundState: RoundState; readonly peers?: undefined; } export declare const ConsensusStateResponseCodec: import("../../../codec").BaseCodec; export declare function createConsensusStateResponse(data: unknown): ConsensusStateResponse; export type ConsensusState = ConsensusStateResponse;