import { ParagraphVariant, ParagraphColor, ParagraphFontFamily } from '../types'; export interface ParagraphProps { variant?: ParagraphVariant; color?: ParagraphColor; fontFamily?: ParagraphFontFamily; marginTop?: number; } export declare const Paragraph: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, ParagraphProps, never>;