import type { ResourceLocation } from './Resources';
export declare enum FontFormat {
    TTF = "ttf",// TrueType -> fully supported in Android, iOS and modern web browsers
    OTF = "otf",// OpenType -> fully supported in iOS and modern web browsers, Android API 26+
    WOFF2 = "woff2"
}
export interface FontSource {
    location: ResourceLocation;
    fontFormat: FontFormat;
}
export type SdkFont = {
    name: string;
    source: FontSource[];
};
