import { FC, PropsWithChildren } from 'react'; import { AddressNameProviderProps, BlockExplorerProviderProps, DappProviderProps, ImageOptimizationProviderProps, LabelsProviderProps, TokenProviderProps } from '.'; export interface ArgentUIProviderProps extends AddressNameProviderProps, BlockExplorerProviderProps, DappProviderProps, TokenProviderProps, LabelsProviderProps, ImageOptimizationProviderProps, PropsWithChildren { } /** Convenience combining all providers */ export declare const ArgentUIProvider: FC;