import { Base, Type } from "./type";
export declare class FontRegistry extends Base {
static $t: Type;
private static a;
static get instance(): FontRegistry;
private c;
registerFont(a: string, b: any): void;
removeFont(a: string): void;
getFont(a: string): any;
}