import { z } from "zod"; /** * Zod schema for supported text font-weight values across text-related clip/style APIs. */ export declare const FontWeightSchema: z.ZodEnum<["normal", "bold", "bolder", "lighter", "100", "200", "300", "400", "500", "600", "700", "800", "900"]>; /** * Zod schema for supported text alignment values. */ export declare const TextAlignSchema: z.ZodEnum<["left", "center", "right", "justify"]>; /** * Zod schema for supported text font-style values. */ export declare const FontStyleSchema: z.ZodEnum<["normal", "italic", "oblique"]>; /** * Type alias for validated text font-weight values. */ export type TextStyleFontWeight = z.infer; /** * Type alias for validated text alignment values. */ export type TextStyleAlign = z.infer; /** * Type alias for validated text font-style values. */ export type TextStyleFontStyle = z.infer;