import { DynamicChild, DynamicProps } from './types'; export declare const updateParameters: (element: Element, params: DynamicProps) => void; export declare const updateChildren: (element: Element, children: readonly DynamicChild[]) => void; /** * @deprecated * @internal library use only */ export declare class Component { /** @deprecated use public API method `getElement(component)` instead */ readonly element: E; private props?; private children?; constructor( /** @deprecated use public API method `getElement(component)` instead */ element: E, props?: DynamicProps | undefined, children?: readonly DynamicChild[] | undefined); /** @deprecated use public API method `update(component)` instead */ update(): this; }