import { Link } from 'react-router-dom'; interface StyledProps { themeDisabled: boolean; themeIntent: 'primary' | 'danger' | 'success' | 'warning' | 'error' | 'subdued-text'; themeSize: 'small' | 'medium' | 'large' | 'inherit'; } declare const StyledLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, StyledProps, never>; declare const StyledRouterLink: import("styled-components").StyledComponent; declare const StyledIconWrapper: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, { themePosition: 'left' | 'right'; }, never>; export { StyledLink, StyledRouterLink, StyledIconWrapper };