import { type NetworkName, type SuiExplorerItem } from "@polymedia/suitcase-core"; import type { ExplorerName } from "./explorers"; export type ExplorerLinkProps = { network: NetworkName; kind: SuiExplorerItem; addr: string; html?: React.AnchorHTMLAttributes; children?: React.ReactNode; }; /** * An external link like: * `{text}` */ export declare const LinkExternal: React.FC & { follow?: boolean; children: React.ReactNode; }>; /** * A link to a Sui explorer (Polymedia, Suiscan, or SuiVision). */ export declare const LinkToExplorer: React.FC; /** * A link to explorer.polymedia.app. */ export declare const LinkToPolymedia: import("react").FC; /** * A link to suiscan.xyz. */ export declare const LinkToSuiscan: import("react").FC; /** * A link to suivision.xyz. */ export declare const LinkToSuivision: import("react").FC;