import { DefaultTheme } from 'styled-components'; /** * Text styles for paragraphs (multi line text). * This is used in the Paragraph. * @property {Object} text.500 - Required property. * @property {Object} text.400 - Required property. Default. * @property {Object} text.300 - Required property. */ export declare const getParagraphStyle: ({ color, variant, fontFamily }?: { color?: "muted" | "default" | "intense" | undefined; variant?: 300 | 400 | 500 | undefined; fontFamily?: "ui" | "display" | "mono" | undefined; }) => (_: { theme: DefaultTheme; }) => string;