import { ScaleValue } from "@vitality-ds/system"; import { AVAILABLE_VARIANTS } from "../constants/variants"; export declare const getVariantStyles: (key: ScaleValue<"fontSizes"> | "inherit") => { fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput"; fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput"; lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput"; letterSpacing: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput"; fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput"; }; export declare const maxLinesBaseStyle: { overflow: string; whiteSpace: string; textOverflow: string; display: string; "-webkit-box-orient": string; }; export declare const getMaxLines: (numLines: number, variant: ScaleValue<"fontSizes">) => { "-webkit-line-clamp": number; maxHeight: string; overflow: string; whiteSpace: string; textOverflow: string; display: string; "-webkit-box-orient": string; }; export declare const getMaxLinesVariants: (maxLines: number, variants: typeof AVAILABLE_VARIANTS) => any[];