import { SafeBaseElement } from '../core'; export interface SliderControlsElement extends HTMLElement { } export default class SliderControls extends SafeBaseElement implements SliderControlsElement { #private; static get observedAttributes(): string[]; constructor(); get nextBtnLabel(): string; set nextBtnLabel(value: string | null); get prevBtnLabel(): string; set prevBtnLabel(value: string | null); get playBtnLabel(): string; set playBtnLabel(value: string | null); get pauseBtnLabel(): string; set pauseBtnLabel(value: string | null); get indexBtnLabel(): string | null; set indexBtnLabel(value: string | null); get indexLabel(): string; set indexLabel(value: string | null); connectedCallback(): void; attributeChangedCallback(_name: string, oldValue: string, newValue: string): void; }