import { TextProps } from './text.js'; export declare const weightToTwClass: (weight: TextProps['weight']) => "font-medium" | "font-normal" | "font-semibold" | "font-bold"; export declare const sizeToTwClass: (size: TextProps['size']) => "text-xs" | "text-sm" | "text-xxs" | "text-base" | "text-lg" | "text-xl" | "text-2xl" | "text-3xl" | "text-4xl" | "text-5xl" | "text-6xl" | "text-7xl" | "text-8xl" | "text-9xl"; export declare const twCn: { weight: (weight: TextProps['weight']) => "font-medium" | "font-normal" | "font-semibold" | "font-bold"; size: (size: TextProps['size']) => "text-xs" | "text-sm" | "text-xxs" | "text-base" | "text-lg" | "text-xl" | "text-2xl" | "text-3xl" | "text-4xl" | "text-5xl" | "text-6xl" | "text-7xl" | "text-8xl" | "text-9xl"; };