import { CustomElement } from '../../Abstracts/CustomElement'; import { IEpgMinimapElementProps } from './IEpgMinimapElementProps'; import { EpgChannelElement } from './EpgChannelElement'; /** * EPG Minimap - A compact overview panel for an Electronic Program Guide. * * Renders a bird's-eye view of channel rows scaled to fit the visible viewport window. * Clicking on the minimap emits a `jumpToRow` event so the host EPG can scroll accordingly. * * @name EpgMinimapElement * @element mosaik-epg-minimap * @category Selectors * * @example * ```html * * ``` * * @public */ export declare class EpgMinimapElement extends CustomElement implements IEpgMinimapElementProps { private _lanes; private _visibleStart; private _visibleEnd; private _channels; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `lanes` property. * * @public * @attr */ get lanes(): number; set lanes(value: number); /** * Gets or sets the `visibleStart` property. * * @public * @attr */ get visibleStart(): number; set visibleStart(value: number); /** * Gets or sets the `visibleEnd` property. * * @public * @attr */ get visibleEnd(): number; set visibleEnd(value: number); /** * Gets or sets the `channels` property. * * @public */ get channels(): Array; set channels(value: Array); /** * @protected */ protected onClick(e: MouseEvent): void; } /** * @public */ export declare namespace EpgMinimapElement { type Props = IEpgMinimapElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-epg-minimap': EpgMinimapElement; } } //# sourceMappingURL=EpgMinimapElement.d.ts.map