import React from 'react'; export type GasConfig = 'standard' | 'fast' | 'lightspeed'; export type GasConfigContextVal = [GasConfig, (newState: GasConfig) => void]; export declare const gasConfigProviderStorageKey = "polyswap-gasConfig"; export declare const GasConfigProvider: ({ children }: React.PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export declare const useGasConfig: () => GasConfigContextVal; //# sourceMappingURL=GasConfigProvider.d.ts.map