import { TextSize } from "./";
import { FontWeight } from "./text";
export declare const OTHER_THEME_CONFIG: {
    fontSize?: Partial<Record<TextSize, Array<string>>>;
    lineHeight?: Partial<Record<TextSize, Array<string>>>;
    letterSpacing?: Partial<Record<TextSize, Array<number>>>;
    fontWeight?: Record<'regular' | 'semiBold' | 'bold' | 'halfBold', number>;
    fontWeightBySize?: Partial<Record<TextSize, FontWeight>>;
};
