/** * @license * Copyright 2018-2026 Advanced Visual Systems Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This product includes software developed at * Advanced Visual Systems Inc. (http://www.avs.com) */ import { LitElement, PropertyValues } from 'lit'; declare const AvsGoDynamicHtml_base: (new (...args: any[]) => import("./avs-element-mixin.js").AvsElementMixinInterface) & typeof LitElement; /** * `avs-go-dynamic-html` is a Lit element which requests HTML by instancing * the `dynamicHtmlName` class on the AVS/Go server application running at `url`. * The HTML response is inserted into this element's shadow DOM. * * @customElement * @lit * @applysMixin AvsElementMixin */ export declare class AvsGoDynamicHtml extends AvsGoDynamicHtml_base { /** The URL to an instance of AVS/Go server application. */ url: string; /** Name of the data source registered in the library map on the server. */ dataSourceName?: string; /** User properties as JSON passed directly to the data source on the server. */ dataSourceUserProperties?: string; /** The name of the dynamic html registered in the library map on the server. */ dynamicHtmlName?: string; /** User properties as JSON passed directly to the dynamic html on the server. */ dynamicHtmlUserProperties?: string; _html?: string; render(): import("lit-html").TemplateResult<1>; willUpdate(changedProperties: PropertyValues): void; } declare global { interface HTMLElementTagNameMap { 'avs-go-dynamic-html': AvsGoDynamicHtml; } } export {}; //# sourceMappingURL=avs-go-dynamic-html.d.ts.map