import { UIElement } from "../ui-element.js"; import { TimeType } from "@videojs/core"; import { PropertyValues } from "@videojs/element"; import { Text } from "@videojs/core/i18n"; //#region src/ui/time/element.d.ts declare class TimeElement extends UIElement { #private; static readonly tagName = "media-time"; static properties: { type: { type: StringConstructor; }; negativeSign: { type: StringConstructor; attribute: string; }; label: { type: StringConstructor; }; toggle: { type: BooleanConstructor; }; }; type: TimeType; negativeSign: string; label: Text | string; toggle: boolean; connectedCallback(): void; disconnectedCallback(): void; protected willUpdate(changed: PropertyValues): void; protected update(changed: PropertyValues): void; } //#endregion export { TimeElement }; //# sourceMappingURL=element.d.ts.map