import type { NetworkSpecsStruct } from '@polkadot/ui-settings/types'; import React from 'react'; interface Props { className?: string; networkSpecs: NetworkSpecsStruct; size?: string | number; style?: React.CSSProperties; } declare function DisplayNetworkSpecs({ className, networkSpecs, size, style }: Props): React.ReactElement | null; export declare const QrNetworkSpecs: React.MemoExoticComponent; export {};