import * as lit_html from 'lit-html';
import { LitElement } from 'lit';
import { J as JSXCustomElement } from '../../jsx-custom-element-C8UWRHYg.js';
interface AppAttributes {
header?: 'sticky';
}
declare class App extends LitElement {
header?: 'sticky';
render(): lit_html.TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'dmd-app': AppAttributes;
}
}
declare module 'react' {
namespace JSX {
interface IntrinsicElements {
'dmd-app': JSXCustomElement;
}
}
}
export { App, type AppAttributes };