import Component, { IComponentStaticProps } from './Component.js'; export declare type Renderer = (container: Element | ShadowRoot, ui: any) => void; export declare const packagePrivateGetPendingDataMethod: unique symbol; export declare const packagePrivateBeforeRenderMethod: unique symbol; export declare const setRenderer: (newRenderer: Renderer) => void; export declare const define: (customElement: IComponentStaticProps) => void; export declare const update: (component: Component) => void;