/** * Parse a raw .aseprite ArrayBuffer into a composited bitmap and an atlas-style * JSON sidecar. Exported for advanced use cases (e.g. runtime-generated sprites) * — the preload path below is the usual entry point. */ export function parseAseprite(buffer: any, imageName?: string): Promise<{ bitmap: any; json: { frames: {}; meta: { app: string; version: string; image: any; format: string; size: { w: number; h: any; }; scale: string; frameTags: any; }; }; }>; //# sourceMappingURL=aseprite.d.ts.map