import { BitmapFont } from "./bitmap_font"; export interface ImportOptions { monospace?: boolean; cellWidth?: number; baseline?: number; logger?: (text: string) => void; debug?: boolean; } export declare function read_gfx(content: string, options?: ImportOptions): BitmapFont; export declare function write_gfx(font: BitmapFont, name: string, baseline?: number): string;