import React from "react"; import { RampCatalog } from "./types"; import { Loadable } from "../../types"; export type RampCatalogDataAPI = { fetchRampCatalog: () => Promise; }; type RampCatalogContextType = { state: Loadable; updateCatalog: () => Promise; }; export declare const rampCatalogContext: React.Context; type RampCatalogProviderProps = { children: React.ReactNode; updateFrequency: number; provider?: string; }; export declare function useRampCatalogContext(): Loadable; export declare function RampCatalogProvider({ children, updateFrequency, }: RampCatalogProviderProps): React.JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map