import type { ExtendedChain } from '@lifi/sdk';
interface ChainListItemProps {
    chain: ExtendedChain;
    onSelect: (chain: ExtendedChain) => void;
    selected?: boolean;
    itemsSize: 'small' | 'medium';
    size: number;
    start: number;
    isPinned: boolean;
    onPin: (chainId: number) => void;
    withPin: boolean;
}
export declare const ChainListItem: import("react").MemoExoticComponent<({ chain, onSelect, selected, itemsSize, size, start, isPinned, onPin, withPin, }: ChainListItemProps) => import("react/jsx-runtime").JSX.Element>;
export {};
