import { TypographyProps, ColorProps } from 'styled-system'; import { ResponsiveStyleProps } from '../../utility/responsive'; type Cursorprops = { cursor?: string; responsiveStyles?: ResponsiveStyleProps; }; export type IconStyledProps = TypographyProps & ColorProps & Cursorprops; export declare const IconStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, IconStyledProps>> & string; export {};