import { default as React } from 'react'; export interface ExternalLinkProps { /** Link URL */ href: string; /** Link text content */ children: React.ReactNode; /** Show external icon */ showIcon?: boolean; /** Icon position */ iconPosition?: 'left' | 'right'; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Color variant */ variant?: 'default' | 'primary' | 'muted'; /** Additional className */ className?: string; /** Click handler (called before navigation) */ onClick?: (e: React.MouseEvent) => void; } /** * ExternalLink Component * * Secure external link with optional icon indicator. * Automatically includes rel="noopener noreferrer" for security. * * @example * ```tsx * * Visit Example * * ``` * * @example * ```tsx * * Read Documentation * * ``` */ export declare const ExternalLink: React.FC; //# sourceMappingURL=external-link.d.ts.map