import { FontFamily, FontFamilyConfig, FontFamilyOptions, FontVariant } from "./Fonts"; export declare const fontFamilyMap: Record; export declare const fontVariantMap: Record; export declare const addFontLoadListener: (name: string, callback: () => void) => void; export declare const removeFontLoadListener: (name: string, callback: () => void) => void; export declare const isFontLoading: (name: string) => boolean; export declare const isFontLoaded: (name: string) => boolean; export declare const isStyleComposerFont: (name: string) => boolean; export declare const getFontFamily: (name: string) => FontFamily | undefined; export interface FontAsset { type: string; location: string; } export declare const createFontFamily: (name: string, config: FontFamilyConfig, options?: FontFamilyOptions | undefined) => FontFamily;