/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LitElement } from "lit"; import { RecentBoard } from "../../types/types.js"; interface Guides { title: string; description: string; url: string; image?: string; } export declare class WelcomePanel extends LitElement { version: string; recentBoards: RecentBoard[]; guides: Guides[]; static styles: import("lit").CSSResult; render(): import("lit-html").TemplateResult<1>; } export {}; //# sourceMappingURL=welcome-panel.d.ts.map