/** * BlockCommitment response */ export interface BlockCommitmentResponse { commitment: number[]; totalStake: number; } export declare function createBlockCommitmentResponse(data: unknown): BlockCommitmentResponse;