/// import { TextProps } from "./Text.types.js"; /** * Single-line text element. */ declare function Text({ children, category, size, weight, lineHeight, spacing, color, alignment, nowrap, ellipsis, mono, margin, marginTop, marginRight, marginBottom, marginLeft, m, mt, mr, mb, ml, }: TextProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; declare namespace Text { var displayName: string; var propTypes: { color: import("prop-types").Requireable; alignment: import("prop-types").Requireable; nowrap: import("prop-types").Requireable; ellipsis: import("prop-types").Requireable; category: import("prop-types").Requireable; size: import("prop-types").Requireable; weight: import("prop-types").Requireable; lineHeight: import("prop-types").Requireable; spacing: import("prop-types").Requireable; mono: import("prop-types").Requireable; margin: import("prop-types").Requireable; marginTop: import("prop-types").Requireable; marginRight: import("prop-types").Requireable; marginBottom: import("prop-types").Requireable; marginLeft: import("prop-types").Requireable; m: import("prop-types").Requireable; mt: import("prop-types").Requireable; mr: import("prop-types").Requireable; mb: import("prop-types").Requireable; ml: import("prop-types").Requireable; }; } declare const _default: import("react").MemoExoticComponent; /** * Single-line text element. */ export default _default;