UNPKG

352 BTypeScriptView Raw
1import { BaseComponent, BaseProps } from './base';
2export interface HTMLContentProps extends BaseProps {
3 content: string;
4 parentElement?: string;
5}
6export declare class HTMLElement extends BaseComponent<HTMLContentProps> {
7 static defaultProps: {
8 parentElement: string;
9 };
10 render(): import("preact").VNode<any>;
11}