import { GroteskHeadingFontSize } from './Heading'; import { FontSize } from './types'; export declare type FontSizeConfig = { h1?: GroteskHeadingFontSize; h2?: GroteskHeadingFontSize; h3?: GroteskHeadingFontSize; h4?: GroteskHeadingFontSize; h5?: GroteskHeadingFontSize; h6?: GroteskHeadingFontSize; p?: FontSize; list?: FontSize; default: FontSize; }; export declare type FontColorConfig = { heading?: string; p?: string; a?: string; a_hover?: string; highlight?: string; default: string; }; export declare type SpacingConfig = { large: number; small: number; xxsmall: number; default: number; }; export interface RichTextProps { noMargins?: boolean; fontSizes?: FontSizeConfig; fontColors?: FontColorConfig; spacings?: SpacingConfig; } export declare const RichText: import("styled-components").StyledComponent<"div", any, RichTextProps, never>; //# sourceMappingURL=RichText.d.ts.map