import React from "react"; import { aliases as colors } from "../theme/colors"; export declare const sizes: { md: number; sm: number; xs: number; }; export declare const lineHeights: { md: number; sm: number; xs: number; }; export interface TextProps { align?: "left" | "center" | "right"; bold?: boolean; children: React.ReactNode; color?: "inherit" | "currentColor" | keyof typeof colors; inline?: boolean; italic?: boolean; pointerEvents?: "auto" | "none" | "all" | "inherit"; size?: keyof typeof sizes; strikethrough?: boolean; truncate?: boolean; underline?: boolean; uppercase?: boolean; } export declare const Text: ({ align, bold, children, color, inline, italic, pointerEvents, size, strikethrough, truncate, underline, uppercase, }: TextProps) => React.JSX.Element; //# sourceMappingURL=Text.d.ts.map