import React from "react"; declare const TextColors: { black: string; darkGray: string; gray: string; lightGray: string; white: string; }; export type TextColor = keyof typeof TextColors; interface TypographyProps { weight?: "300" | "400" | "600" | "700"; size?: "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl"; color?: TextColor; decoration?: "underline" | "line-through" | "none"; children: React.ReactNode; } export declare const Typography: React.FC; export {};