import { FontBase } from './font-common'; import { FontStyleType, FontWeightType, FontVariationSettingsType } from './font-interfaces'; export { FontStyle, FontWeight, FontVariationSettings, parseFont } from './font-common'; export declare class Font extends FontBase { static default: Font; constructor(family: string, size: number, style?: FontStyleType, weight?: FontWeightType, scale?: number, variationSettings?: Array); getUIFont(defaultFont: UIFont): UIFont; getAndroidTypeface(): any; } export declare namespace ios { function registerFont(fontFile: string): void; }