import type { FunctionComponent } from 'react'; import React from 'react'; export interface LitCreatable

{ container?: HTMLElement | null; renderRoot: HTMLElement | ShadowRoot; Component: FunctionComponent

; create?: () => P; } export declare function unmount>(this: T): boolean; export declare function reactRender

, T extends LitCreatable

>(this: T, conditionalRender?: boolean, ...children: React.ReactNode[]): P | undefined;