@synapsecns/widget
Version:
Widget library for interacting with the Synapse Protocol
13 lines (12 loc) • 422 B
TypeScript
import { Chain } from 'types';
type PopoverSelectProps = {
options: Chain[];
remaining: Chain[];
targets: Chain[];
onSelect: (selected: Chain) => void;
selected: Chain;
label: string;
isOrigin: boolean;
};
export declare const ChainPopoverSelect: ({ options, remaining, targets, onSelect, selected, label, isOrigin, }: PopoverSelectProps) => import("react/jsx-runtime").JSX.Element;
export {};