export declare const EXPLORER_NAMES: readonly ["Polymedia", "Suiscan", "SuiVision"]; export type ExplorerName = (typeof EXPLORER_NAMES)[number]; /** * A radio button menu to select a Sui explorer and save the choice to local storage. */ export declare const ExplorerRadioSelector: React.FC<{ selectedExplorer: ExplorerName; onSwitch: (newExplorer: ExplorerName) => void; className?: string; }>; /** * Load the chosen Sui explorer name from local storage. */ export declare function loadExplorer(defaultExplorer: ExplorerName): ExplorerName; /** * Change the chosen Sui explorer, update local storage, and optionally trigger a callback. */ export declare function switchExplorer(newExplorer: ExplorerName, onSwitch?: (newExplorer: ExplorerName) => void): void;