export type GetFeeEstimateRequest = { numBlocks?: number; }; export type GetFeeEstimateResponse = { feePerKb: number; cpfpFeePerKb?: number; numBlocks: string; confidence?: number; multiplier?: number; feeByBlockTarget?: Record; };