import React from 'react'; import { ConfigOptions } from './providers/ConfigProviders'; import { ThemeConfig } from './providers/PolyswapThemeProvider'; import { PinnedTokenProviderProps } from './providers/PinnedTokenProvider'; import { Overrides } from './providers/OverrideProvider'; /** * This contains all the providers that are needed for the polyswap 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 PolyswapAppProvider: ({ children, enableDarkMode, defaultPinnedTokens, overrides, ...config }: PolyswapAppProviderProps) => import("react/jsx-runtime").JSX.Element; export type PolyswapAppProviderProps = React.PropsWithChildren; export type { ConfigOptions, ThemeConfig, PinnedTokenProviderProps, Overrides }; //# sourceMappingURL=PolyswapAppProvider.d.ts.map