import type { ServerFontResourceDescriptor, UnloadFontOptions } from './Font.types'; export type ExpoFontLoaderModule = { getLoadedFonts: () => string[]; loadAsync: (fontFamilyName: string, localUriOrWebAsset: any) => Promise; unloadAllAsync?: () => Promise; unloadAsync?: (fontFamilyName: string, options?: UnloadFontOptions) => Promise; isLoaded?: (fontFamilyName: string, options?: UnloadFontOptions) => boolean; getServerResources?: () => string[]; getServerResourceDescriptors?: () => ServerFontResourceDescriptor[]; }; declare const m: ExpoFontLoaderModule; export default m; //# sourceMappingURL=ExpoFontLoader.d.ts.map