import { default as WJElement } from '../wje-element/element.js'; /** * `Route` is a custom web component that represents a route in a routing system. * @summary This element represents a route in a routing system. * @documentation https://elements.webjet.sk/components/route * @status stable * @augments WJElement * @tag wje-route */ export default class Route extends WJElement { /** * Returns the list of attributes to observe for changes. * @static * @returns {Array} */ static get observedAttributes(): Array; /** * Draws the component for the route. * @returns {DocumentFragment} */ draw(): DocumentFragment; }