/// import { BitmapFont } from "./bitmap_font"; import { BitDirection } from "./glyph"; export declare function exportAscii(font: BitmapFont, lineWidth?: number): string[]; export interface ExportOptions { columns?: boolean; direction?: BitDirection; includeOffsets?: boolean; includeCodemap?: boolean; datatype?: string; } export declare function exportC(name: string, font: BitmapFont, options?: ExportOptions): string; export declare function exportRust(name: string, font: BitmapFont, options?: ExportOptions): string; export declare function exportPython(name: string, font: BitmapFont, options?: ExportOptions): string; export declare function exportBin(font: BitmapFont, options?: ExportOptions): Buffer;