import { BlockhashWithExpiryBlockHeight } from "@solana/web3.js"; export declare class BlockhashCache { private ttlSecs; private blockhashes; constructor(ttl?: number); set(blockhash: BlockhashWithExpiryBlockHeight, ts: number): void; get(): BlockhashWithExpiryBlockHeight; }