import { default as React } from 'react'; export interface CodeDisplayProps { /** Code or text to display */ children: React.ReactNode; /** Visual variant */ variant?: 'primary' | 'secondary' | 'success' | 'warning' | 'neutral'; /** Size variant */ size?: 'xs' | 'sm' | 'md' | 'lg'; /** Display as inline or block */ inline?: boolean; /** Text alignment (for block display) */ align?: 'left' | 'center' | 'right'; /** Additional className for the container */ className?: string; /** Whether to enable text wrapping */ wrap?: boolean; } /** * CodeDisplay Component * * Displays code, wallet addresses, or monospace text in a styled container. * Commonly used for displaying blockchain addresses, code snippets, or * technical identifiers. * * @example * ```tsx * * wallet@example.com * * ``` * * @example * ```tsx * * 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb * * ``` */ export declare const CodeDisplay: React.FC; //# sourceMappingURL=code-display.d.ts.map