import React from "react"; import { type TextProps } from "../../Typography/Text"; import { type ContentColor } from "../types"; export type TypographyTextProps = Omit; export type ContentTextProps = TypographyTextProps & { color?: ContentColor | TextProps["color"]; /** Provides additional line-height */ isSpacedOut?: boolean; }; export declare const ContentTextContext: React.Context>; export declare const CONTENT_TEXT_LINE_HEIGHT_OFFSET = 0.14; export declare function ContentText({ size, color, weight, isSpacedOut, children, ...rest }: ContentTextProps): React.ReactElement;