import { default as React } from 'react'; import { ChainType } from '@sudobility/types'; export type StatusType = 'verified' | 'connected' | 'disconnected' | 'pending' | 'error' | 'success' | 'warning'; interface StatusBadgeProps { status: StatusType; label?: string; showDot?: boolean; size?: 'sm' | 'md' | 'lg'; } interface ChainBadgeProps { chainType?: ChainType; size?: 'sm' | 'md' | 'lg'; } export declare const StatusBadge: React.FC; export declare const ChainBadge: React.FC; export {}; //# sourceMappingURL=status-badge.d.ts.map