export declare const BoardFunc: { boardToZpl: ({ id, model, data, orientation, mirror, upsideDown, context, draft }: { id: any; model: any; data: any; orientation: any; mirror?: boolean; upsideDown?: boolean; context: any; draft?: boolean; }) => Promise; boardToPdf: ({ id, model, data, width: w, height: h, options, context }?: { id?: string; model?: any; data?: any; width?: number; height?: number; options?: any; context?: any; }) => Promise; headlessModel: (target: any, draft?: boolean) => Promise<{ base: string; model: any; board: import("../index.js").Board; }>; fonts: (domain?: import("@things-factory/shell").Domain) => Promise<(string | { custom: { families: any[]; }; google: { families: any[]; }; })[]>; };