import { LitElement } from "lit"; import type { BaseProps } from "./types.js"; /** * Example component demonstrating the structure and patterns for * Lit web components in this package. * * Shows how to: * - Use separate styles.css and types.ts files * - Handle properties with decorators * - Use slots for content projection * * @example * ```html * * ``` * * @implements ds:global.component.example */ export default class Example extends LitElement implements BaseProps { static styles: import("lit").CSSResult; /** * The label text to display */ label: string; /** * Display variant */ variant?: BaseProps["variant"]; render(): import("lit").TemplateResult<1>; } //# sourceMappingURL=Example.d.ts.map