Files
github-actions[bot] f3ee114735 Updates
2026-01-18 03:14:49 +00:00

15 lines
672 B
TypeScript

import type { IFavoriteChainProps, Network } from './types.js';
import React from 'react';
interface Props {
affinity?: string;
apiUrl: string;
className?: string;
setApiUrl: (network: string, apiUrl: string) => void;
value: Network;
isFavorite: boolean;
toggleFavoriteChain: (chainInfo: IFavoriteChainProps) => void;
}
declare function NetworkDisplay({ apiUrl, className, isFavorite, setApiUrl, toggleFavoriteChain, value: { isChild, isRelay, isUnreachable, name, nameRelay: relay, paraId, providers, ui } }: Props): React.ReactElement<Props>;
declare const _default: React.MemoExoticComponent<typeof NetworkDisplay>;
export default _default;