import React from 'react'; interface LinkWrapperProps { url?: string; target?: string; shouldWrap?: boolean; onClick?: () => void; isTeamSquad?: boolean; ariaLabel?: string; } export declare const LinkWrapper: React.FC>; export {};