import type React from 'react'; /** * Displays chain icon. Shows loading state or unsupported when chain is not configured. * * @example * ```tsx * * ``` */ declare const Chain: React.FC<{ id?: number; unsupported?: boolean; radius?: number | string; size?: number | string; }>; export default Chain;