import type { Logger } from "pino"; export declare class CustomGasStation { private chain; private speed; private chainMethods; private logger; constructor(logger: Logger, chain: number, speed: string); getCustomGasPrice(): Promise; private fetchMaticMainnetGasPrice; } export declare function getCustomGasStation(logger: Logger, customGasStation?: number, txSpeed?: string): CustomGasStation | undefined;