import type { ExtendedChain } from '@lifi/sdk'; import type { RefObject } from 'react'; import type { FormType } from '../../stores/form/types.js'; interface VirtualizedChainListProps { scrollElementRef: RefObject; formType: FormType; chains: ExtendedChain[]; onSelect: (chain: ExtendedChain) => void; selectedChainId?: number; itemsSize: 'small' | 'medium'; hasSearchQuery: boolean; withPinnedChains: boolean; } export declare const VirtualizedChainList: ({ formType, chains, hasSearchQuery, onSelect, selectedChainId, itemsSize, scrollElementRef, withPinnedChains, }: VirtualizedChainListProps) => import("react/jsx-runtime").JSX.Element; export {};