export { TextVariant } from "./v3";
export interface TextTreatment {
    fontSize: string;
    lineHeight: string;
    letterSpacing?: string;
    fontWeight?: "normal" | "bold";
}
