import type { ExtendedChain } from '@lifi/sdk';
import type { RefObject } from 'react';
import type { FormType } from '../../stores/form/types.js';
interface ChainListProps {
    parentRef: RefObject<HTMLDivElement | null>;
    formType: FormType;
    chains: ExtendedChain[];
    onSelect: (chain: ExtendedChain) => void;
    selectedChainId?: number;
    isLoading: boolean;
    hasSearchQuery: boolean;
    inExpansion: boolean;
}
export declare const ChainList: ({ parentRef, formType, chains, hasSearchQuery, onSelect, selectedChainId, isLoading, inExpansion, }: ChainListProps) => import("react/jsx-runtime").JSX.Element;
export {};
