import { CSSProperties } from 'react'; import { BaseProps, BaseStyleProps, ColorStyleProps, ResponsiveStyleValue, TagNameProps, TextStyleProps } from '../../tasty'; export declare const TEXT_PROP_MAP: { readonly transform: "textTransform"; readonly weight: "fontWeight"; readonly italic: "fontStyle"; }; export interface JengaTextProps extends BaseProps, TagNameProps, TextStyleProps, BaseStyleProps, ColorStyleProps { /** * Whether the text uses the monospace font. */ monospace?: boolean; /** * Whether the text overflow is ellipsis */ ellipsis?: boolean; /** * Whether the text is not wrapping */ nowrap?: boolean; /** * Whether the text has italic style */ italic?: ResponsiveStyleValue; weight?: string | number; transform?: ResponsiveStyleValue; } declare const Text: import("react").ForwardRefExoticComponent> & { Minor: import("react").ForwardRefExoticComponent>; Danger: import("react").ForwardRefExoticComponent>; Success: import("react").ForwardRefExoticComponent>; Strong: import("react").ForwardRefExoticComponent>; Emphasis: import("react").ForwardRefExoticComponent>; Selection: import("react").ForwardRefExoticComponent>; }; export { Text };