@synapsecns/widget
Version:
Widget library for interacting with the Synapse Protocol
11 lines (10 loc) • 430 B
TypeScript
import { type BridgeableToken, type CustomThemeVariables } from 'types';
interface WidgetProps {
customTheme: CustomThemeVariables;
container?: Boolean;
targetTokens?: BridgeableToken[];
targetChainIds?: number[];
protocolName?: string;
}
export declare const Widget: ({ customTheme, container, targetChainIds, targetTokens, protocolName, }: WidgetProps) => import("react/jsx-runtime").JSX.Element;
export {};