import { Account } from "@coin-voyage/crypto/hooks"; import { ChainType, PayOrderMode } from "@coin-voyage/shared/types"; import type { Option } from "../components/ui/OptionsList/types"; interface UseChainOptionsProps { account: Account; mode?: PayOrderMode; onClick: (chainType: ChainType) => void; } export declare function useChainOptions({ account, mode, onClick, }: UseChainOptionsProps): { options: Option[]; }; export {};