import { ReactNode } from 'react'; export interface LinkProps extends React.HTMLAttributes { status?: 'warning' | 'danger' | 'success' | 'default'; hoverable?: boolean; disabled?: boolean; icon?: ReactNode; href?: string; target?: '_blank' | '_self' | '_parent' | '_top'; }