import type { Sheet } from "./types.js"; import type { Grid } from "./grid.js"; import { type DrawableImage } from "./imageCache.js"; export type { DrawableImage } from "./imageCache.js"; export declare function preloadDrawingImages(sheet: Sheet, load: (bytes: Uint8Array) => Promise): Promise; export declare function drawDrawings(ctx: CanvasRenderingContext2D, sheet: Sheet, g: Grid): void;