import { CSSProperties } from "styled-components"; interface FontProps { color?: CSSProperties["color"]; customFontWeight?: CSSProperties["fontWeight"]; customFontSize?: CSSProperties["fontSize"]; customLineHeight?: CSSProperties["lineHeight"]; hoverColor?: CSSProperties["backgroundColor"]; hoverPointer?: CSSProperties["cursor"]; padding?: CSSProperties["padding"]; textAlign?: CSSProperties["textAlign"]; textTransform?: CSSProperties["textTransform"]; userSelect?: CSSProperties["userSelect"]; } declare const StyledText: import("styled-components").StyledComponent<"span", any, FontProps, never>; export { StyledText };