interface ParagraphTheme { color?: string; fontSize?: string; fontWeight?: string; fontStyle?: string; fontFamily?: string; margin?: string; textAlign?: string; lineHeight?: string; } export type StyleProps = { customStyle?: ParagraphTheme; }; declare const StyledParagraph: import("styled-components").StyledComponent<"p", any, StyleProps, never>; export default StyledParagraph;