import { SupportedGasOptions } from '../types'; export declare type GasOption = { id: SupportedGasOptions; label: string; range: string; timeLabel: string; price: string; baseFee: string; }; export declare const useGasPriceOptions: () => { gasOptions: { 0?: GasOption | undefined; 1?: GasOption | undefined; 2?: GasOption | undefined; 3?: GasOption | undefined; }; blockNum: number | undefined; };