import { CustomElement } from '../../Abstracts/CustomElement';
import { EpgChannelElement } from './EpgChannelElement';
import { IEpgMinimapElementProps } from './IEpgMinimapElementProps';
/**
* EPG Minimap - A compact overview panel for an Electronic Program Guide.
*
* @description
* 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
*
* @csspart marker - The marker part.
* @csspart row ${i >= e.visibleStart && i <= e.visibleEnd ? 'in-view' : ''} - The row ${i >= e.visibleStart && i <= e.visibleEnd ? 'in-view' : ''} part.
*
* @cssprop {String} --epg-minimap-background-color - The minimap background color CSS custom property.
* @cssprop {String} --epg-minimap-border-color - The minimap border color CSS custom property.
* @cssprop {String} --epg-minimap-border-radius - The minimap border radius CSS custom property.
* @cssprop {String} --epg-minimap-border-style - The minimap border style CSS custom property.
* @cssprop {String} --epg-minimap-border-width - The minimap border width CSS custom property.
* @cssprop {String} --epg-minimap-font-family - The minimap font family CSS custom property.
* @cssprop {String} --epg-minimap-font-letter-spacing - The minimap font letter spacing CSS custom property.
* @cssprop {String} --epg-minimap-font-line-height - The minimap font line height CSS custom property.
* @cssprop {String} --epg-minimap-font-size - The minimap font size CSS custom property.
* @cssprop {String} --epg-minimap-font-text-decoration - The minimap font text decoration CSS custom property.
* @cssprop {String} --epg-minimap-font-text-transform - The minimap font text transform CSS custom property.
* @cssprop {String} --epg-minimap-font-weight - The minimap font weight CSS custom property.
* @cssprop {String} --epg-minimap-foreground-color - The minimap foreground color CSS custom property.
* @cssprop {String} --epg-minimap-gap - The minimap gap CSS custom property.
* @cssprop {String} --epg-minimap-padding-bottom - The minimap padding bottom CSS custom property.
* @cssprop {String} --epg-minimap-padding-left - The minimap padding left CSS custom property.
* @cssprop {String} --epg-minimap-padding-right - The minimap padding right CSS custom property.
* @cssprop {String} --epg-minimap-padding-top - The minimap padding top CSS custom property.
* @cssprop {String} --epg-minimap-shadow - The minimap shadow CSS custom property.
* @cssprop {String} --epg-minimap-shadow-blur - The minimap shadow blur CSS custom property.
* @cssprop {String} --epg-minimap-shadow-color - The minimap shadow color CSS custom property.
* @cssprop {String} --epg-minimap-shadow-offset-x - The minimap shadow offset x CSS custom property.
* @cssprop {String} --epg-minimap-shadow-offset-y - The minimap shadow offset y CSS custom property.
* @cssprop {String} --epg-minimap-shadow-spread - The minimap shadow spread CSS custom property.
* @cssprop {String} --epg-minimap-transition-duration - The minimap transition duration CSS custom property.
* @cssprop {String} --epg-minimap-transition-mode - The minimap transition mode CSS custom property.
* @cssprop {String} --epg-minimap-transition-property - The minimap transition property CSS custom property.
* @cssprop {String} --epg-minimap-translate - The minimap translate CSS custom property.
*
* @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