import { PlonkProof } from '../../types';
declare const sp1ConsensusMPTPlonkProof: ProofResultResultMessage;
type ContractStorageSlot = {
    slot_key_address: string;
    value: string;
};
type ProofResultResultMessage = {
    input_slot: number;
    input_store_hash: string;
    output_slot: number;
    output_store_hash: string;
    proof: PlonkProof;
    execution_state_root: string;
    contract_storage_slots: ContractStorageSlot[];
    elapsed_sec: number;
};
export { sp1ConsensusMPTPlonkProof };
