import '@material/web/icon/icon.js'; import '@material/web/fab/fab.js'; import { LitElement, PropertyValues } from 'lit'; export declare class BoardTemplateViewer extends LitElement { static styles: import("lit").CSSResult[]; boardTemplate: any; _scene: any; _target: HTMLElement; render(): import("lit-html").TemplateResult<1>; private resizeHandler; connectedCallback(): void; disconnectedCallback(): void; updated(changes: PropertyValues): void; initScene(): void; closeScene(): void; releaseScene(): void; setupScene({ id, scene }: { id: string; scene: any; }): void; getSceneImageData(base64?: boolean): Promise<{ width: any; height: any; data: string | Uint8ClampedArray; } | undefined>; printTrick(image: string): Promise; }