import type { FormPresenterHost } from "./FormComponent"; export declare function refresh(component: object): void; /** * Refreshes an element. * @param host The host for the presenter. * @param name The name of the element to refresh. */ export declare function refreshForm(host: FormPresenterHost, container: Element): void; /** * Releases the underlying visual for the element. * @product This is intended for internal use only within VertiGIS Studio products. * @param element The element to release from. */ export declare function releaseForm(container: HTMLElement): void; /** Renders a component's visual. */ export declare function render(component: object, refCallback: (a: HTMLElement) => void): any; /** * Renders an element with a placeholder. * @param owner */ export declare function renderNone(component: object): any;