import type { DesignTokenValues, FontWeightValue, OutputVariantKey, RecursiveDesignToken } from './types/designToken'; type FontWeight = 'hairline' | 'thin' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black'; export type FontWeights = DesignTokenValues, Output, Platform> & RecursiveDesignToken, Output, Platform>; export declare const fontWeights: FontWeights<'default'>; export {};