import { Chain } from 'types';
type Props = {
    label: 'To' | 'From';
    isOrigin: boolean;
    onChange: (newChain: Chain) => void;
    chain: Chain;
};
export declare const ChainSelect: ({ label, isOrigin, chain, onChange }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
