import { ChainType } from '@bnb-chain/canonical-bridge-sdk'; interface UseAutoSelectFromChainProps { onPending?: () => void; onSettle?: () => void; } export declare function useAutoSelectFromChain(props?: UseAutoSelectFromChainProps): { autoSelectFromChain({ chainType, chainId }: { chainType: ChainType; chainId: number; }): Promise; }; export {};