import { SIZE, COLOR } from './types'; interface StyledIconProps { size: SIZE; color: COLOR | string; hoverColor: COLOR | string; } declare const StyledIcon: import("styled-components").StyledComponent<"svg", any, StyledIconProps, never>; export { StyledIcon };