import { MediaChromeButton } from './media-chrome-button.js'; export declare const Attributes: { SEEK_OFFSET: string; }; declare function getSlotTemplateHTML(_attrs: Record, props: Record): string; declare function getTooltipContentHTML(): string; /** * @slot icon - The element shown for the seek backward button’s display. * * @attr {string} seekoffset - Adjusts how much time (in seconds) the playhead should seek backward. * @attr {string} mediacurrenttime - (read-only) Set to the current media time. * * @cssproperty [--media-seek-backward-button-display = inline-flex] - `display` property of button. */ declare class MediaSeekBackwardButton extends MediaChromeButton { static getSlotTemplateHTML: typeof getSlotTemplateHTML; static getTooltipContentHTML: typeof getTooltipContentHTML; static get observedAttributes(): string[]; connectedCallback(): void; attributeChangedCallback(attrName: string, _oldValue: string | null, newValue: string | null): void; /** * Seek amount in seconds */ get seekOffset(): number; set seekOffset(value: number); /** * The current time in seconds */ get mediaCurrentTime(): number; set mediaCurrentTime(time: number); handleClick(): void; } export default MediaSeekBackwardButton;