interface UseTronSwitchChainProps { mutation?: { onMutate?: () => void; onSuccess?: (params: { chainId: number; }) => void; onError?: (err: any) => void; onSettled?: () => void; }; } export declare function useTronSwitchChain(props?: UseTronSwitchChainProps): { switchChain({ chainId }: { chainId: number; }): Promise; }; export {};