import { Chain } from "@lifi/sdk"; //#region src/hooks/useExplorer.d.ts type TransactionLinkProps = { chain?: Chain | number; txHash?: string; txLink?: string; }; declare const useExplorer: () => { getTransactionLink: (props: TransactionLinkProps) => string | undefined; getAddressLink: (address: string, chain?: Chain | number) => string; }; //#endregion export { useExplorer }; //# sourceMappingURL=useExplorer.d.ts.map