import type { GasSpeed } from "../gas/index.js"; export type TxPolicy = { maxFeePerGas?: bigint; maxPriorityFeePerGas?: bigint; feeSpeed?: GasSpeed; gasLimitMultiplier?: number; receiptTimeout?: number; pollingInterval?: number; replacementStrategy?: "speedup" | "cancel" | "none"; replacement?: { strategy?: "speedup" | "cancel" | "none"; stuckBlocks?: number; stuckMs?: number; maxAttempts?: number; }; }; export declare const defaultPolicy: TxPolicy; //# sourceMappingURL=policy.d.ts.map