import { FC } from "react"; import type { CurrentChain } from "@orderly.network/types"; import { API } from "@orderly.network/types"; import { Chains } from "@orderly.network/hooks/esm/orderly/useChains"; export interface ChainSelectProps { disabled?: boolean; onValueChange?: (value: any) => void; onChainInited?: (chain: API.Chain) => void; value: CurrentChain | null; settingChain?: boolean; filter?: (chain: API.Chain) => boolean; chains?: Chains; } export declare const ChainSelect: FC; //# sourceMappingURL=chainSelect.d.ts.map