import type { ExtendedChain } from '@lifi/sdk';
import { type FormType } from '../../stores/form/types.js';
interface SelectChainContentProps {
    formType: FormType;
    onSelect?: (chain: ExtendedChain) => void;
    inExpansion: boolean;
}
export declare const SelectChainContent: import("react").NamedExoticComponent<SelectChainContentProps>;
export {};
