import { default as React } from 'react'; interface LinkWithIconProps { text: string; icon?: React.ReactElement; onClick: () => void; className?: string; size?: 'sm' | 'md' | 'lg'; otherProps?: Record; } export declare const LinkWithIcon: React.FC; export type { LinkWithIconProps as LinkComponentProps }; export default LinkWithIcon;