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 {};
