import type { GasFeeFlow, GasFeeFlowRequest, GasFeeFlowResponse } from '../types.js'; /** * A gas fee flow to facilitate testing in the clients. * Increments the total gas fee by a fixed amount each time it is called. * Relies on the transaction's gas value to generate a distinct total fee in the UI. */ export declare class TestGasFeeFlow implements GasFeeFlow { #private; matchesTransaction(): boolean; getGasFees(request: GasFeeFlowRequest): Promise; } //# sourceMappingURL=TestGasFeeFlow.d.ts.map