import { Config } from "../types"; export declare const isOracleActive: (payload: { chainId: bigint; }, config: Config) => Promise; export declare const getGelatoOracles: (config: Config) => Promise; export declare const getPaymentTokens: (payload: { chainId: bigint; }, config: Config) => Promise; export declare const getEstimatedFee: (payload: { chainId: bigint; paymentToken: string; gasLimit: bigint; isHighPriority: boolean; gasLimitL1: bigint; }, config: Config) => Promise;