import React from 'react'; import { ConfigOptions } from './providers/ConfigProviders'; import { ThemeConfig } from './providers/BridgesThemeProvider'; import { PinnedTokenProviderProps } from './providers/PinnedTokenProvider'; import { Overrides } from './providers/OverrideProvider'; /** * This contains all the providers that are needed for the bridges components and hooks to work. Add it to the root of your app. * You can then import SwapCard to render the exchange widget or import any other hooks or components you need. * * @param props ConfigOptions & React.PropsWithChildren * @example * ```jsx * // app.jsx or index.js * * * // others children * * ``` */ export declare const BridgesAppProvider: ({ children, enableDarkMode, defaultPinnedTokens, overrides, ...config }: BridgesAppProviderProps) => JSX.Element; export type BridgesAppProviderProps = React.PropsWithChildren; export type { ConfigOptions, ThemeConfig, PinnedTokenProviderProps, Overrides }; //# sourceMappingURL=BridgesAppProvider.d.ts.map