import React from 'react'; import { Theme } from '../../lib'; type CommonWidgetContainerProps = { className?: string; docText?: string; actionName?: string; lightTheme?: Theme; darkTheme?: Theme; }; type IPFSWidgetContainerProps = { widgetConfigUri: string; contract?: string; functionKey?: string; }; type DirectWidgetContainerProps = { deploymentAddresses: Map; functionSignature: string | EthersTypes.JsonFragment; }; type WidgetContainerProps = CommonWidgetContainerProps & (IPFSWidgetContainerProps | DirectWidgetContainerProps); export declare const WidgetContainer: React.FC; export {};